// JavaScript Document

function loadMe(fileName){
   var xmlHttp;
//	alert(navigator.appName);
	if(navigator.appName == "Microsoft Internet Explorer"){
		try{
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");	
		}catch(e){
			try{
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(e){
					
			}
		}
	}else{
		try{
			xmlHttp = new XMLHttpRequest();
		}catch(e){
			alert("Your browser doesn't support AJAX");	
		}
	}

    xmlHttp.onreadystatechange=function(){
      if(xmlHttp.readyState==4){ 
        document.getElementById("myContent").innerHTML=xmlHttp.responseText;
      }
    }

    xmlHttp.open("GET",fileName,true);
    xmlHttp.send(null);
}

