function checkRegister(theForm)
{
	var tmp = new String(theForm.UREG_NOTES.value)

	if (tmp.length > 255)
	{
		alert ("You have entered too many characters (" + tmp.length + ") in the \"Notes\" field.\nMax is 255 characters.\nPlease Shorten the Notes.");
		theForm.UREG_NOTES.focus();
		return false;
	}


	if (theForm.elements["UREG_TIME"])
	{
		if (theForm.UREG_TIME.options[theForm.UREG_TIME.selectedIndex].value == "")
		{
			alert("You must select a Time");
			theForm.UREG_TIME.focus();
			return false;
		}
	}

	return true;
}
