var getSubscriptionRequest;

function setJsConnection(pClientTitle, pClientName, pClientEmail, pClientPhone, pCheck1, pCheck2, pCheck3)
{
	document.getElementById("lightboxBackground").style.zIndex = 900;
	var pass_array = new Array();
	pass_array["clientTitle"] = escape(pClientTitle);
	pass_array["clientName"] = escape(pClientName);
	pass_array["clientEmail"] = escape(pClientEmail);
	pass_array["clientPhone"] = escape(pClientPhone);
	pass_array["clientCheck1"] = pCheck1;
	pass_array["clientCheck2"] = pCheck2;
	pass_array["clientCheck3"] = pCheck3;
	getSubscriptionRequest = setUpConnection("setSubscription.aspx",pass_array);
}

function updateResult()
{
	if(getSubscriptionRequest.readyState == 4)
	{
		if(getSubscriptionRequest.status == 200)
		{
			document.getElementById("lightboxBackground").style.zIndex = 500;
			currentPanel.style.visibility = 'hidden';
			currentPanel = false;
			if(currentLang == "en")
			{
				currentPanel = document.getElementById("thankyouEN");
			}
			else
			{
				currentPanel = document.getElementById("thankyouTC");
			}
			openPanel();
		}
	}
}
