function getContent(element,page,queryString){
	
	document.getElementById(element).innerHTML='<div id="load"><img src="style/load.gif" /></div>';
	
	var ajax=new ajaxConn();
	if (ajax.success==true)
	{
		
		ajax.connection.open("GET", 'content.php?page='+page+queryString, true);
		
		ajax.connection.send(null); 
		  ajax.connection.onreadystatechange = function () {
		  	if (ajax.connection.readyState  == 4)
		  	{
		  		if (ajax.connection.status == 200) { 
		  			document.getElementById(element).innerHTML=ajax.connection.responseText;
		  			
		  		}
		  	}
		  }
		
	}
	
}
