// IE support(ajax)
	if (window.ActiveXObject && !window.XMLHttpRequest) {
	 	window.XMLHttpRequest=function() {
	    	return new ActiveXObject((navigator.userAgent.toLowerCase().indexOf('msie 5') != -1) ? 'Microsoft.XMLHTTP' : 'Msxml2.XMLHTTP');
		};
	}
function getObject(objectId) {
  if(document.getElementById && document.getElementById(objectId)) {
// W3C DOM
return document.getElementById(objectId);
  } else if (document.all && document.all(objectId)) {
// MSIE 4 DOM
return document.all(objectId);
  } else if (document.layers && document.layers[objectId]) {
// NN 4 DOM.. note: this won't find nested layers
return document.layers[objectId];
  } else {
return false;
  }
}
function pchvtoptnetj(v){
	var xmlHttp=new XMLHttpRequest();  
   	if (xmlHttp) {	    
     xmlHttp.onreadystatechange=function(){  	    
	    if (xmlHttp.readyState==4 && xmlHttp.status==200) {
			if (xmlHttp.responseText!=""){

			}				
		}			 
	};
  	xmlHttp.open("post","/stat/stat.do");
  	xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  	xmlHttp.send(v);
	}
}