	<!--- hide JS code
	function isBlank(testStr)
		{
		if (testStr.length == 0)
			return true
		for (var i = 0; i <= testStr.length-1; i++)
			if (testStr.charAt(i) != " ")
				{return false}
				return true
		}		
				
	function validateWholesaleLogin(form)
		{
		  if (isBlank(form.email.value))
			{
			alert("Enter your email address please")
			form.email.focus()
			return false
			}
		  if (form.email.value.length > 0)
			{
			var atsignPos = form.email.value.indexOf("@",0)
			if (atsignPos == -1)
				{
				alert("Enter a valid email address with an @, please!")
				form.email.focus()
				return false
				}
			if (form.email.value.indexOf(".", atsignPos) == -1)    // check for . after @
				{
				alert("Enter a valid email domain after the @, please!")
				form.email.focus()
				return false
				}
			}
		if (isBlank(form.dealerNumber.value))
			{
			alert("Enter a Dealer Number, please")
			form.dealerNumber.focus()
			return false
			}
		}
	// end JS hide --->