function showPage(id)
{
	if (window.XMLHttpRequest)
  	{// code for IE7+, Firefox, Chrome, Opera, Safari
  		xmlhttp1=new XMLHttpRequest();
  	}
	else
  	{// code for IE6, IE5
  		xmlhttp1=new ActiveXObject("Microsoft.XMLHTTP");
  	}
	xmlhttp1.onreadystatechange=function()
  	{
  		if (xmlhttp1.readyState==4 && xmlhttp1.status==200)
    	{
			document.getElementById("Result1").src=id;
			document.getElementById("Result1").style.backgroundColor="#D4CAB6";
			document.getElementById("Result1").style.fontFamily="vardana";
    	}   
                if(xmlhttp1.readyState==3)
		{
			document.getElementById("Result").innerHTML="<table  class='box01' width='100%' height = '50px' border='0'><tr><td class='subtitle' align='center'><font  size='6' face='Garamond, Vardana, Helvetica, sans-serif'><img src='Images/ajax-loader6.gif' width = '25px' height = '25px'> Loading...</font></td></tr>";
		}
                if(xmlhttp1.readyState==2)
		{
			document.getElementById("Result").innerHTML="<b><table  class='box01' width='100%' height = '50px' border='0'><tr><td class='subtitle' align='center'><font  size='6' face='Garamond, Vardana, Helvetica, sans-serif'><img src='Images/ajax-loader6.gif' width = '25px' height = '25px'> Loading...</font></td></tr></b>";
		}
                if(xmlhttp1.readyState==1)
		{
			document.getElementById("Result").innerHTML="<b><table  class='box01' width='100%' height = '50px' border='0'><tr><td class='subtitle' align='center'><font  size='6' face='Garamond, Vardana, Helvetica, sans-serif'><img src='Images/ajax-loader6.gif' width = '25px' height = '25px'> Loading...</font></td></tr></b>";
		}
                if(xmlhttp1.readyState==0)
		{
			document.getElementById("Result").innerHTML="<b><table  class='box01' width='100%' height = '50px' border='0'><tr><td class='subtitle' align='center'><font  size='6' face='Garamond, Vardana, Helvetica, sans-serif'><img src='Images/ajax-loader6.gif' width = '25px' height = '25px'> Loading...</font></td></tr></b>";
		}
		
  	}
	xmlhttp1.open("GET",id,true);
	xmlhttp1.send();
}

