function validate_form1 ( )
{
	valid = true;
	

        if ( document.FF_supportRequest.customercode.value == "" )
        {
                alert ( "Please fill in the 'Customer code' box." );
				
                valid = false;
        }

        if ( document.FF_supportRequest.companyname.value == "" )
        {
                alert ( "Please fill in the 'Company name' box." );
				
                valid = false;
        }
		
		 if ( document.FF_supportRequest.branchaddress.value == "" )
        {
                alert ( "Please fill in the 'Branch/address' box." );
				
                valid = false;
        }
		
	    if ( document.FF_supportRequest.yourname.value == "" )
        {
                alert ( "Please fill in the 'Your Name' box." );
				
                valid = false;
        }
		
     
        if ( document.FF_supportRequest.contactnumber.value == "" )
        {
                alert ( "Please fill in the 'Contact number' box." );
				
                valid = false;
        }
		
		if ( document.FF_supportRequest.email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
				
                valid = false;
        }
		
		if ( document.FF_supportRequest.enquiry.value == "" )
        {
                alert ( "Please fill in the 'Description' box." );
				
                valid = false;
        }
		
		if ( document.FF_supportRequest.returncontact.value == "" )
        {
                alert ( "Please fill in the 'When to contact' box." );
				
                valid = false;
        }
		
        return valid;
}

