// JScript source code

/* Optional: Temporarily hide the "tabber" class so it does not "flash"
   on the page as plain HTML. After tabber runs, the class is changed
   to "tabberlive" and it will appear. */

document.write('<style type="text/css">.tabber{display:none;}<\/style>');
      
function CheckFormCancel()
{
	if (document.frmCancelPolicy.txtReason.value == "")
	{
		alert("Please enter the cancellation reason.");
		document.frmCancelPolicy.txtReason.focus();
		return false;
	}
}
        
function HAct_WinOpen(CoverType,CoverLevel)
{
	URL = "List_HActivities.asp?CoverLevel="+CoverLevel+"&CoverType="+CoverType;
	if (CoverLevel == "Super")
	{
		URL = URL + "&txtGrade="+document.frmCalPrice.txtGrade_1.value;
	}
	else
	{
		URL = URL + "&txtGrade="+document.frmCalPrice.txtGrade_2.value;
	}
	WName = "800x600";
	WFeatures = "toolbar=no,status=no,left=0,top=0,scrollbars=yes,location=no,width=780,height=600";
	window.open(URL,WName,WFeatures);
}
