/////pure ajax
function ajax_fun(id)
{
//alert("hi");	
var xmlHttp;
try
  {   xmlHttp=new XMLHttpRequest();  
     }
catch (e)
  {  // Internet Explorer  try
		try
		{    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    }
	  catch (e)
		{ 
		
				   try
				  {      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      }
				catch (e)
				  {      alert("Your browser does not support AJAX!");      return false;      }  
		}  
   }
xmlHttp.open("GET","http://www.lcdhomeloans.com.au/getpage.php?&id="+id+"&rand="+Math.random(),true);
xmlHttp.send(null); 

xmlHttp.onreadystatechange=function(){
    if(xmlHttp.readyState==4)
      {
	  var rps = xmlHttp.responseText;
	  document.getElementById('page_content').innerHTML=rps;

	  }
    }

 }
