function validate_form1 ( )
{
	valid = true;
	
		
	    if ( document.win_form.name.value == "" )
        {
                alert ( "Please fill in the 'Name' box." );
				
                valid = false;
        }
		
			var address = document.win_form.email.value;
			var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
        if(reg.test(address) == false) 
        {
                alert ( "Please fill in the 'Email' box with valid email." );
				
                valid = false;
        }
		
     
         if ( document.getElementById("state").selectedIndex == 0 )
        {
                alert ( "Please fill in the 'State' box." );
				
                valid = false;
        }
		
		if ( (document.win_form.domain[0].checked == false)
			&& ( document.win_form.domain[1].checked == false) )
        {
                alert ( "Please check yes or no if you have a current site" );
				
                valid = false;
        }
		
		
		

        return valid;
}


