	var xmlHTTP_pd;
		function createXMLHttpRequest_pd(){
			if (window.ActiveXObject){
				xmlHTTP_pd=new ActiveXObject("Microsoft.XMLHTTP");
			}else if (window.XMLHttpRequest){
				xmlHTTP_pd=new XMLHttpRequest();
			}
		}
	function handleStateChange_pd(){
		if (xmlHTTP_pd.readyState==4){
			if (xmlHTTP_pd.status==200){
				//txtmessage_pd.innerHTML=xmlHTTP_pd.responseText;
			document.getElementById( 'txtmessage_pd').innerHTML=xmlHTTP_pd.responseText;
			}else{
				document.getElementById( 'txtmessage_pd').innerHTML=xmlHTTP_pd.statusText;
				//txtmessage_pd.innerHTML=xmlHTTP_pd.statusText;
			}
		}
	}
	function requestSecure_pd(srv,grp,pg){
		createXMLHttpRequest_pd();
		
			xmlHTTP_pd.open("POST","product.asp?serv="+srv+"&group="+grp+"&page="+pg,true);
			xmlHTTP_pd.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
			
			xmlHTTP_pd.onreadystatechange=handleStateChange_pd;
			//xmlHTTP_pd.send(null);
			xmlHTTP_pd.send("");
	}