// Validate fash cash form
function validate_fields( )
{
    valid = true;	
    if ( document.form1.fname.value == "" )
    {
        alert ( "Please fill in the first name textbox." );
        valid = false;
    }
	if ( document.form1.lname.value == "" )
    {
        alert ( "Please fill in the last name textbox." );
        valid = false;
    }
	if ( document.form1.teleno.value == "" )
    {
        alert ( "Please fill in the telephone textbox." );
        valid = false;
    }
	if ( document.form1.email.value == "" )
    {
        alert ( "Please fill in a valid email." );
        valid = false;
    }
    return valid;
}

//validate contact page contact form
function validate_contact_fields( )
{
    valid = true;	
    if ( document.form2.name.value == "" )
    {
        alert ( "Please fill in the name textbox." );
        valid = false;
    }
	if ( document.form2.teleno.value == "" )
    {
        alert ( "Please fill in the telephone textbox." );
        valid = false;
    }
	if ( document.form2.email.value == "" )
    {
        alert ( "Please fill in a valid email." );
        valid = false;
    }
	if ( document.form2.message.value == "" )
    {
        alert ( "Please fill in the message textbox." );
        valid = false;
    }
    return valid;
}

//Validate fash cash form

function setVisibility(id, visibility) {
document.getElementById(id).style.display = visibility;
}





