function Content(sURL)
{

  var xhr_object = null;
 
  if(window.XMLHttpRequest) // Firefox
			xhr_object = new XMLHttpRequest();
	else if(window.ActiveXObject) // Internet Explorer
			 xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
	else { 
			 alert("Problem with XMLHTTPRequest in your browser...");
			 return;
	}
	xhr_object.open("GET", sURL, true);

	xhr_object.onreadystatechange = function() {

		if(xhr_object.readyState == 4)  {
		var x=document.getElementById('Content').innerHTML=xhr_object.responseText;
		
		}
	
	}
	xhr_object.send(null);  

}

