/*****************************************************************

    Javascript Validation file for concessionary_fares_form

    Produced automatically by formBuilder

    Source code can be found in:

    contentmanager/formbuider/form_validator.asp

*****************************************************************/



function validate_concessionary_fares(frm) {	
    var message = ''; 
    var MyRegExp =  new RegExp; 
    if (frm.Name.value == '' ) {message+='Blank Name field is not allowed\n';}

    if (frm.Address.value == '' ) {message+='Blank Address is not allowed\n';}

    if (frm.Telephone.value == '' ) {message+='Blank Telephone field is not allowed\n';}

    if (frm.Email.value == '' ) {message+='Blank Email field is not allowed\n';}
	
	if (frm.Comments.value == '' ) {message+='Blank Comments field is not allowed\n';}
 
    if (message!="") { alert('Please note the following:\n'+message); return false; } else { return true;} 
} 

