function calpop(sEventURL)
{
sPage = sEventURL
var height = "300";
var width = "450";
windowprops = "height=" + height + "," + "width=" + width + "," +"scrollbars=yes,menubar=no,toolbar=no,resizable=yes,status=yes,location=no";
window.open(sPage, "cal_pop", windowprops);
}

function verify(sFormName)
{
if (confirm('Are you sure you want create reminders for this event?'))
	{
		sAlert = ""
		var aCheckFields1 = new Array("email")
		var aAlertTxt1 = new Array("Your E-Mail")
		for (i=0;i<aCheckFields1.length;i++)
			{
				if (getElement(aCheckFields1[i]).value == "")
					{
						sAlert = sAlert + "\n" + aAlertTxt1[i]
					}
			}
		if (sAlert != "")
			{
				sAlert =  "The following fields need to be filled in before you can submit this form:" + sAlert
				alert(sAlert)
			} else {
				submitForm(sFormName);
			}		
	}
}
