function ValidateEquipment(){
	alrtCode = "";
	
		if (document.ADDEDITEQUIP.category.value == ""){
			alrtCode = alrtCode += "\n  -  A Category must be provided";
		}
		
		if (document.ADDEDITEQUIP.Manufacturer.value == ""){
			alrtCode = alrtCode += "\n  -  A Manufacturer must be provided";
		}
		
	
		
			
		if (alrtCode != ""){
			alrtCode ="____________________________________\n" +
			"You failed to correctly fill in the following field(s):\n" +
			alrtCode + "\n__________________________________" +
			"\nWe can not process your Equipment Entry\nwithout th(is/ese) field(s)\n\nPlease edit the form and submit again!";
			
			alert(alrtCode);
			document.ADDEDITEQUIP.category.focus();
			return false;
		}
		else
		return true;
}