<!--
function getXhr(){if(window.XMLHttpRequest){xhr=new XMLHttpRequest();return xhr;}else if(window.ActiveXObject){try{xhr=new ActiveXObject("Msxml2.XMLHTTP");return xhr;}
catch(e){xhr=new ActiveXObject("Microsoft.XMLHTTP");return xhr;}}else{alert("Your browser doesn't support AJAX/WEB 2.0");xhr=null;}}
function callUrlGet(in_sUrl){getXhr();xhr.open("GET",in_sUrl,true);xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');xhr.send("x=x");}
function getSubFormGet(in_sForm,in_sUrl){var oXHR=getXhr();document.getElementById(in_sForm).innerHTML="";oXHR.onreadystatechange=function(){if(oXHR.readyState==4&&oXHR.status==200){sResponse=oXHR.responseText;document.getElementById(in_sForm).innerHTML=sResponse;}}
oXHR.open("GET",in_sUrl,true);oXHR.setRequestHeader('Content-Type','application/x-www-form-urlencoded');oXHR.send("x=x");}
-->
