﻿function OpenRequestWindow(vstrImageUrl, vstrCommentsLabel, vstrEmailSubject, vblnDisplayRegistrationOptions) {
	if (vstrImageUrl != null || vstrCommentsLabel != null || vstrEmailSubject != null || vblnDisplayRegistrationOptions != null)
	{
		var oWebService;
		if (typeof XMLHttpRequest == "undefined")
			oWebService = new ActiveXObject("Microsoft.XMLHTTP");
		else
			oWebService = new XMLHttpRequest();
		oWebService.open("POST", "/Resources/wsVistechWebParts.asmx", false);
		oWebService.setRequestHeader("SOAPAction", "http://vistech.com/GetRegistrationQueryString");
		oWebService.setRequestHeader("Content-Type", "text/xml");
		oWebService.send("<?xml version=\"1.0\" encoding=\"utf-8\"?><soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"><soap:Body><GetRegistrationQueryString xmlns=\"http://vistech.com/\"><vstrImageUrl>" + vstrImageUrl + "</vstrImageUrl><vstrCommentsLabel>" + vstrCommentsLabel + "</vstrCommentsLabel><vstrEmailSubject>" + vstrEmailSubject + "</vstrEmailSubject><vblnDisplayRegistrationOptions>" + vblnDisplayRegistrationOptions + "</vblnDisplayRegistrationOptions></GetRegistrationQueryString></soap:Body></soap:Envelope>");
		var responseXML = oWebService.responseText;
					
		var intPosBegin = responseXML.indexOf("<GetRegistrationQueryStringResult>");
		var intPosEnd = responseXML.indexOf("</GetRegistrationQueryStringResult>");
		var strQueryString = responseXML.substring(intPosBegin + 34, intPosEnd);

		window.open("/Registration/Request.aspx?" + strQueryString,'Registration','Height=600,Width=765,toolbar=0,menubar=0,scrollbars=1,resizable=0,location=0,directories=0,status=0');
	}
	else
	{
		window.open('/Registration/Request.aspx','Registration','Height=600,Width=765,toolbar=0,menubar=0,scrollbars=1,resizable=0,location=0,directories=0,status=0');
	}
}
function OpenCallMeWindow() {
	window.open('/Registration/CallMe.aspx','Registration','Height=600,Width=765,toolbar=0,menubar=0,scrollbars=1,resizable=0,location=0,directories=0,status=0');
}

