function submitChecks()
{
 invalidChars = " /:;%^*()#"; // can't have these chars in an address

	if(document.investor.name.value=="")
	{
		alert("Please enter your Name");
	  document.investor.name.focus();
	  return false;
	}
	
	if(document.investor.phone.value=="")
	{
		alert("Please enter your Phone");
	  document.investor.phone.focus();
	  return false;
	}
	
	  
 return true;
 
}//end function submitChecks()