<!--

function loadContent(div,url){

	var xmlhttp;
	if (window.XMLHttpRequest) {
		xmlhttp = new XMLHttpRequest();
	}else if (window.ActiveXObject) {
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}

	url+='?ts='+new Date().getTime();
	xmlhttp.open('GET',url,true);
	xmlhttp.onreadystatechange=function()
		{
			if (xmlhttp.readyState==4){
				if (xmlhttp.status == 200) {
					var obj=document.getElementById(div);
					if (xmlhttp.responseText!=''){
    						obj.innerHTML=xmlhttp.responseText;
    					}
				}else{
					alert('°õ¦æ¿ù»~,¥N½X:'+xmlHttp.status+'\('+xmlHttp.statusText+'\)');
				}
			}
		};
	xmlhttp.send(null);

}

 function right(e) {
      if (navigator.appName =='Netscape'&&
      (e.which ==3|| e.which ==2))
      return false;
      else if (navigator.appName == 'Microsoft Internet Explorer' &&
      (event.button == 2|| event.button ==3)) {
      alert("Thank you to come visiting this page, If must our help, Please tel +886-3-2220986\n\nCreates your inconvenient, Please forgive,Thank's.");
      return false;
      }
      return true;
      }
      {
      document.onmousedown=right;
      if (document.layers) window.captureEvents(Event.MOUSEDOWN);
      window.onmousedown=right;
      }
//-->
