// JavaScript Document
function ValidateForm(){
	if(document.form.Manufacturer.value == ''){
		alert ("You forgot to fill in the manufacturer");
		document.form.Manufacturer.focus();
		return false;
		}
	else if (document.form.Namenumber.value == ''){
		alert ("You forgot to fill in the model name/number");
		document.form.Namenumber.focus();
		return false;
		}
	else if (document.form.Hardware.value == ''){
		alert ("You forgot to fill in the number of units");
		document.form.Hardware.focus();
		return false;
		}
	else if (document.form.Serialnumber.value == ''){
		alert ("You forgot to fill in the serial number");
		document.form.Serialnumber.focus();
		return false;
		}
	else if (document.form.Problem.value == ''){
		alert ("You forgot to fill in a description of the problem");
		document.form.Problem.focus();
		return false;
		}
	else if (document.form.Username.value == ''){
		if (document.form.name.value == ''){
			alert ("You forgot to fill in your name");
			document.form.Name.focus();
			return false;
			}
		else if (document.form.Company.value == ''){
			alert ("You forgot to fill in your company");
			document.form.Company.focus();
			return false;
			}
		else if (document.form.Street.value == ''){
			alert ("You forgot to fill in your street address");
			document.form.Street.focus();
			return false;
			}
		else if (document.form.CSZ.value == ''){
			alert ("You forgot to fill in your address information");
			document.form.CSZ.focus();
			return false;
			}
		else if (document.form.Phone.value == ''){
			alert ("You forgot to fill in your phone number");
			document.form.Phone.focus();
			return false;
			}
		else if (document.form.Email.value == ''){
			alert ("You forgot to fill in your email");
			document.form.Email.focus();
			return false;
			}
		else {
			return true;
			}
		}
	else if (document.form.Password.value == ''){
		alert ("You forgot to fill in your password");
		document.form.Password.focus();
		return false;
		}
	else {
		return true;
		}
	}
// -->