function validate_form ( )
{
	valid = true;

        if ( document.BeyondFurniture.name.value == "" )
        {
                alert ( "Please fill in the 'Your name' box." );
                valid = false;
        }		
      		 		
		if ( document.BeyondFurniture.email.value == "" )
        {
                alert ( "Please fill in the 'Your email' box." );
                valid = false;
        }
		if ( document.BeyondFurniture.productname.value == "" )
        {
                alert ( "Please fill in the 'Product name' box." );
                valid = false;
        }
		
        return valid;
}

