function GetXmlHttp() {
    var xmlHttp = null;
    try {
		xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
    } 
	catch (e) {
		try {
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (e) {
			try {
				xmlHttp = new XMLHttpRequest();
			} catch (e) {
				xmlHttp = false;
			}
		}
    }
    if (!xmlHttp && typeof XMLHttpRequest!='undefined') {
		xmlHttp = new XMLHttpRequest();
    } 
    return xmlHttp;
}
function verifiedcode(scode)
{ 
	var objHTTP;
	objHTTP = GetXmlHttp(); 
	var szURL = "verified.asp";
	var szHttpMethod = "POST";
	objHTTP.open(szHttpMethod, szURL, false);
	objHTTP.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	par = 'sCode=' + scode;
	objHTTP.send(par);
	var szReply = objHTTP.responseText;
	objHTTP = null;
	return szReply;
}