// Check Form Fields 
// Block Submission if one empty

function check_Fields(form)
	{
		for(var i=0; i < form.elements.length; i++)
			{
				if(form.elements[i].value == "")
					{
						alert("Make sure you complete all fields.");
						return false;
					}
			}
			
		return true;
	
	}