      function loadproject(dest) {
		  try {
			  xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
		  } catch (e) {
		  }
		  xmlhttp.onreadystatechange = triggered;
		  xmlhttp.open("GET", dest);
		  xmlhttp.send(null);
      }
      function triggered() {
		  // 0=Uninitialised 1=Loading 2=Loaded 3=Interactive
		  //alert(xmlhttp.responseText);
		  if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
			  //alert(xmlhttp.responseText);
			  document.getElementById("kanan").innerHTML = xmlhttp.responseText;
		  }
      }
      function loadnews(dest) {
		  try {
			  xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
		  } catch (e) {
		  }
		  xmlhttp.onreadystatechange = triggerednews;
		  xmlhttp.open("GET", dest);
		  xmlhttp.send(null);
      }
      function triggerednews() {
		  // 0=Uninitialised 1=Loading 2=Loaded 3=Interactive
		  //alert(xmlhttp.responseText);
		  if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
			  //alert(xmlhttp.responseText);
			  document.getElementById('klasifikasi').innerHTML = xmlhttp.responseText;
		  }
      }
      function loadisi(dest) {
		  try {
			  xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
		  } catch (e) {
		  }
		  xmlhttp.onreadystatechange = triggeredisi;
		  xmlhttp.open("GET", dest);
		  xmlhttp.send(null);
      }
      function triggeredisi() {
		  // 0=Uninitialised 1=Loading 2=Loaded 3=Interactive
		  //alert(xmlhttp.responseText);
		  if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
			  //alert(xmlhttp.responseText);
			  document.getElementById('isiartikel').innerHTML = xmlhttp.responseText;
		  }
      }
      function formUrl(dest, postVar) {
		  try {
			  xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
		  } catch (e) {
		  }
		  xmlhttp.onreadystatechange = triggered;
		  xmlhttp.open("POST", dest, true);
		  xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
		  xmlhttp.setRequestHeader("Content-length", postVar.length);
		  //xmlhttp.setRequestHeader("Connection", "close");
		  xmlhttp.send(postVar);
      }	  