<!--

function validate_form ( )
{
    valid = true;

    if ( document.rForm.standardVar1.value == "" )
    {alert ( "Please fill in your name." ); valid = false;}

    if ( document.rForm.standardVar4.value == "" )
    {alert ( "Please fill in your address." ); valid = false;}

    if ( document.rForm.standardVar5.value == "" )
    {alert ( "Please fill in the city/town." ); valid = false;}

    if ( document.rForm.TextVar_1.value == "" )
    {alert ( "Please fill in the province." ); valid = false;}

    if ( document.rForm.standardVar7.value == "" )
    {alert ( "Please fill in the postal code." ); valid = false;}

    if ( document.rForm.standardVar8.value == "" )
    {alert ( "Please fill in the phone number." ); valid = false;}
    
    if ( document.rForm.SelectVar_28.selectedIndex == 0 )
    {alert ( "Please fill in gender." ); valid = false;}


return valid;
}



//-->









