// JavaScript Document
function ajax_func(url)
{
  if (window.XMLHttpRequest)
  {
	 alert(url);
	  xmlhttp=new XMLHttpRequest();
	  xmlhttp.open("GET",url,false);
	  xmlhttp.send(null);
  }
  else
  {
	  xmlhttp.open("GET",url,false);
	  xmlhttp.send();
  }
		  
  objspan= document.getElementById('msg');
  objspan.innerHTML = xmlhttp.responseText;
}

