function validateForm(actionType,topGap,leftGap,winX,winY,iSiteID,sslPath)
{
	if (document.frmSelect.iWAMid.value == "")
	{
		alert("You must select a County to continue.");  
	}
	else
	{
		if (actionType == 'login')
		{
			window.open("a_blankPage.asp","WAMsession",'toolbar=no,menubar=no,scrollbars=yes,status=yes,resizable=yes,top=' + topGap + ',left=' + leftGap + ',width=' + winX + ',height=' + winY);
			document.frmSelect.action = "https://www.landata-cc.com/" + sslPath + "/loginForm.asp";
			document.frmSelect.target = "WAMsession";
			document.frmSelect.submit();
		}
		if (actionType == 'pricing')
		{
			window.open("a_blankPage.asp","WAMpricing",'toolbar=no,menubar=no,scrollbars=yes,status=yes,resizable=yes,top=' + topGap + ',left=' + leftGap + ',width=' + winX + ',height=' + winY);
			var formAction;
			if (iSiteID == "1")
			{
				formAction = "http://10.87.3.193/WAM/pricing.asp";
			}
			else if (iSiteID == "2")
			{
				formAction = "http://www.wam2.landata.com/pricing.asp";
			}
			else if (iSiteID == "3")
			{
				formAction = "http://www.wam1.landata.com/pricing.asp";
			}
			document.frmSelect.action = formAction;
			document.frmSelect.target = "WAMpricing";
			document.frmSelect.submit();
		}
		if (actionType == 'register')
		{
			window.open("a_blankPage.asp","WAMregister",'toolbar=no,menubar=no,scrollbars=yes,status=yes,resizable=yes,top=' + topGap + ',left=' + leftGap + ',width=' + winX + ',height=' + winY);
			document.frmSelect.action = "https://www.landata-cc.com/" + sslPath + "/register_AccountRequest.asp?iSiteID=" + iSiteID;
			document.frmSelect.target = "WAMregister";
			document.frmSelect.submit();
		}
		
	}
}


function validateCitation(iSiteID)
{
	var formAction;
	if (iSiteID == "1")
	{
		formAction = "http://10.87.3.193/FL-Monroe/ssl/traffic_payInfo.asp";
	}
	else if (iSiteID == "2")
	{
		formAction = "https://www.landata-cc.com/FL-Monroe/traffic_payInfo.asp";
	}
	else if (iSiteID == "3")
	{
		formAction = "https://www.landata-cc.com/FL-Monroe/traffic_payInfo.asp";
	}
	document.frmCitation.action = formAction;
	document.frmCitation.submit();
}