function popUp(contentName,httpMode)
{
	var vHeight = "450";
	var vWidth	= "500";
	var vPage;
	var vHTTP;
	
	if(contentName.indexOf(".") != -1)
		vPage = contentName;
	else
	{
		vPage = "/popup.php?content=" + contentName;
		
		if(contentName == "state" || contentName == "dob" || contentName == "term" || contentName == "email" || contentName == "gender" || contentName == "residencystatus" || contentName == "USFL" || contentName == "tobacco")
		{
			vHeight = "250";
			vWidth	= "300";
		}
		if(contentName == "calculator" || contentName == "healthclass" || contentName == "heathimpairments" || contentName == "coverageamount")
		{
			vHeight = "550";
			vWidth	= "700";
		}
	}
	
	popUpWin = window.open(vPage, "popUpWin", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + vWidth + ",height=" + vHeight);
	popUpWin.focus();
}



function popUpDetails(contentURL,httpMode)
{
	var vHeight = "550";
	var vWidth	= "650";
	
	if(contentURL.indexOf("paymentdetails.asp") != -1)
	{
		vHeight = "250";
		vWidth	= "300";
	}
	var vPage;
	var vHTTP;
	
	if(contentURL.indexOf(".") != -1)
		vPage = contentURL;
	else
	{
		vPage = "/" + contentURL;
	}
	
	popUpWin = window.open(vPage, "popUpWinDetails", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + vWidth + ",height=" + vHeight);
	popUpWin.focus();
}

