function getFile(pURL,where) {
  
     var curDateTime = new Date()
   
   
  oxmlhttp = null;
    try
      { oxmlhttp = new XMLHttpRequest();
        oxmlhttp.overrideMimeType("text/xml");
      }
    catch(e)
      { try
          { oxmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
          }
        catch(e)
          { return null;
          }
      }
    if(!oxmlhttp) return null;
    try
      { oxmlhttp.open("GET",pURL,false);
        oxmlhttp.send(null);
      }
    catch(e)
      { return null;
      }
    //return oxmlhttp.responseText;
	 
	mywebpage=oxmlhttp.responseText;
	//where="nav";
	document.getElementById(where).innerHTML=mywebpage; 
}
