<!--

function validate_form ( )
{
    valid = true;

    if ( document.horizontalForm.companyName.value == "" )
    {
        alert ( "Please fill in your company name" );
        valid = false;
    }
	
	if ( document.horizontalForm.senderEmail.value == "" )
    {
        alert ( "Please fill in your email address" );
        valid = false;
    }
		
	if ( document.horizontalForm.tel.value == "" )
    {
        alert ( "Please fill in your Telephone number" );
        valid = false;
    }
	

    return valid;
}

//-->