
 var oAjax = new Ajax();
 function getcontent(page) 
 {
 	var content = function(ContentResponse) 
 	{	
 		
 		document.getElementById("content").innerHTML = ContentResponse;

 		
 		
    } // end 
	oAjax.doGet('content.php?page=' + page ,content, 'text');

 } // end function
 function send()
 {
 	var content = function(ContentResponse) 
 	{	
 		
 		document.getElementById("ContentArea").innerHTML = ContentResponse;

 		
    } // end
    oAjax.doGet('main/send_message.php',content, 'text');
 }
 function detect()
 {
 	var content = function(ContentResponse) 
 	{	
 		
 		document.getElementById("detect").innerHTML = ContentResponse;
 		 		
    } // end
    oAjax.doGet('flashdetect.php',content, 'text');
 }