//this is included in order to pop up the date picker box
function DoCal(elTarget) {
	if (window.showModalDialog) {
		var sRtn;
		sRtn = showModalDialog("/common_scripts/events/admin/calendar.htm","","center=yes;dialogWidth=180pt;dialogHeight=182pt");
		if (sRtn!="")
			elTarget.value = sRtn;
	} else
		alert("Internet Explorer 4.0 or later is required.")
}