PopWin.title = "Suspend/Resume Subscription";
PopWin.width = 550;
PopWin.height = 150;  // just height of headings
PopWin.bgcolor = "#ffffff";
function validateFormInfo(form)
{
	firstError = "";
	checkAccountNum(form.elements["AccountNum"], Required);
	checkPhoneNum(form.elements["AreaCode"], form.elements["Phone"], "", NotRequired);
	checkEmail(form.elements["Email"],NotRequired);
	checkEffectiveDate(form, 3, "Suspend", "dayofweek","EffectDay", "EffectMonth", "EffectYear", NotRequired);
	checkEffectiveDate(form, 3, "Resume", "dayofweek2","EffectDay2", "EffectMonth2", "EffectYear2", NotRequired);
	checkSusRes(form,"EffectDay", "EffectMonth", "EffectYear", "EffectDay2", "EffectMonth2", "EffectYear2");
//	checkCheckbox(form.elements["Donate"], "School Donation");
	if(errorMessageList.length == 0) {
		PopWin.close();
		PopWin.show("Confirm");
	}
	else
		PopWin.show("Error");  			
	return false;
}
