

function Validate(objElement)
{
	if (document.br.resubmit.value == 0)
	{
		return true;
	}
	for(var i = 0 ; i < objElement.length ; i++)
  	{
   		if (objElement[i].value == "") 
     		{
			
      			alert("Please Fill Out All Information.");
  			return false;
     		}
  	}
}
function CheckNumeric(obj)
{
	if (isNaN(obj.value))
	{
		alert("Please enter a valid number: no dollar signs, no commas, just numbers.");
		obj.focus();
		return false;
	}
}	


