﻿// JScript File


	function formValidation(x)
	{
        //alert("formValidation called..."  + document.getElementById("realname").value);

		if ( document.getElementById("realname").value == "" )
		{
			alert("Please provide a Name");
			document.getElementById("realname").focus();
			return false;
		}


		if ( document.getElementById("company").value == "" )
		{
			alert("Please provide a Company name");
			document.getElementById("company").focus();
			return false;
		}


		if ( document.getElementById("email").value == "" )
		{
			alert("Please provide an email address");
			document.getElementById("email").focus();
			return false;
		}


		return true;
	}
	