
<!-- Hide from older browsers
function submitIt()
{

	if (document.LoginForm.CompanyNumber.value == "" || isNaN(parseFloat(document.LoginForm.CompanyNumber.value)))
	{
		alert("Please provide complete password using numbers only")
		document.LoginForm.CompanyNumber.select()
		return false
		}
	if (document.LoginForm.TestingPassword.value == "" || isNaN(parseFloat(document.LoginForm.TestingPassword.value)))
	{
		alert("Please provide complete password using numbers only")
		document.LoginForm.TestingPassword.select()
		return false
	}
	if (document.LoginForm.ProductID.value == "" || isNaN(parseFloat(document.LoginForm.ProductID.value)))
	{
		alert("Please provide complete password using numbers only")
		document.LoginForm.ProductID.select()
		return false
	}
return true
}
// End hiding from older browsers -->

	