window.onload = function() {
  document.onselectstart = function() {return false;} // ie
  document.onmousedown = function() {return false;} // mozilla
}



	function loadPages(URL,element_id){
var element = document.getElementById(element_id);
var http = false;

if(navigator.appName == "Microsoft Internet Explorer") {
  http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
  http = new XMLHttpRequest();
}


  http.abort();
  http.open("GET", URL, true);
  http.onreadystatechange=function() {
    if(http.readyState == 4) {
    element.innerHTML = http.responseText;

    }
  }
  http.send(null);
  
}