function validate_form1 ( )
{
	valid = true;

        if ( document.quoteform.name.value == "" )
        {
                alert ( "Please fill in the 'Name' box." );
                valid = false;
        }
		
		 if ( document.quoteform.address.value == "" )
        {
                alert ( "Please fill in the 'Address' box." );
                valid = false;
        }
		 if ( document.quoteform.mobile.value == "" )
        {
                alert ( "Please fill in the 'Mobile' box." );
                valid = false;
        }
		 if ( document.quoteform.email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
		
        return valid;
}


