	<!--
		function form_load()
		{
			document.frmCreate.txtUserID.focus();
			loademup();
		}

		function form_submit()
		{
			if (document.frmCreate.txtUserID.value == '')
			{
				window.alert('Please enter a username.');
				document.frmCreate.txtUserID.focus();
				return false;
			}
			
			if (document.frmCreate.txtPassword.value == '')
			{
				window.alert('Please enter a password.');
				document.frmCreate.txtPassword.focus();
				return false;
			}
		}
	//-->
