<!--
	function trim(str)
	{
		return str.replace(/^\s*(\S*)\s*$/, "$1");
	}

	function isNullTextField(obj, msg)
	{
		if (trim(obj.value) == "")
		{
			alert(msg);
			return false;
		}
		else
		{
			return true;
		}
	}

	function validEmailFormat(obj, msg)
	{
		re = /^\S*\@\S*\.\S*$/;

		if (!re.test(obj.value))
		{
			alert(msg);
			return false;
		}
		else
		{
			return true;
		}
	}

	function isNullPullDown(obj, msg)
	{
		if ( trim(obj.options[obj.selectedIndex].value) == "")
		{
			alert(msg);
			return false;
		}
		else
		{
			return true;
		}
	}
//-->