function checkAnchor(sec_account){
	//Check if it has changes
	var query;
	//var queryChecker = false;
	if(currentAnchor != document.location.hash){
		currentAnchor = document.location.hash;
		if(currentAnchor == ''){
			query = "area="+sec_account;
			query += '&'+account_session;
			//queryChecker = false;
		}else{
			query = "area="+currentAnchor.substring(1);
			query += '&'+account_session;
			//queryChecker = true;
			
		}
		//$j("#main_content").html('<center class="main"><img src="images/loading_content.gif"><br>Loading content, please wait...</center>');
		/* Old get function
		$j.get('process.php', query, function(data){
			$j("#main_content").html(data);
			globalInterval = setInterval("tep_edit_simple_text_area_enabler()", 300);
		});*/
		//if(queryChecker == true){
			$j.ajax({
				type: "GET",
				url: 'process.php?'+query,
				dataType: "html",
				cache: false,
				success: function(html) {				
					$j("#main_content").html(html);	
				}
			});
			globalTimeout = setTimeout("tep_enabler()", 300);
		//}
		
		
	}
}
