function searchbox() {
   
    if (validate_form()) {
        $('#popup').fadeIn('fast');
        $('#window').fadeIn('fast');

        setTimeout('Changetext()', 1700);
    }
}



function validate_form() {
    valid = true;

    if (document.getElementById('dob_mm').selectedIndex == 0 || document.getElementById('dob_dd').selectedIndex == 0 || document.getElementById('dob_yyyy').selectedIndex == 0) {
        alert("Please Choose your Date of Birth");

        if (document.getElementById('dob_yyyy').selectedIndex == 0) {
            document.getElementById('dob_yyyy').style.backgroundColor = '#FFFF99';
        }
        if (document.getElementById('dob_dd').selectedIndex == 0) {
            document.getElementById('dob_dd').style.backgroundColor = '#FFFF99';
        }
        if (document.getElementById('dob_mm').selectedIndex == 0) {
            document.getElementById('dob_mm').style.backgroundColor = '#FFFF99';
        }
      
        
        valid = false;
    }

    return valid;
}



function Changetext() {
    document.getElementById('poptext').innerHTML = '<Br>The dating network that best matches your search criteria is:<br /><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="mate1profile.aspx_files/logo.jpg" width=130 height=50>';
    setTimeout('document.forms[0].submit()', 1300);

}
function Close_Popup(name) {
    $('#popup').fadeOut('fast');
    $(name).fadeOut('fast');
}


function closetcpop(name) {
    $('#terms').fadeOut('fast');
    $('#popup').fadeOut('fast');
}

function showtcpop(name) {
    $('#terms').fadeIn('fast');
    $('#popup').fadeIn('fast');
}

function closeprpop(name) {

    $('#pop_pr').fadeOut('fast');
    $('#popup').fadeOut('fast');
 
}

function showprpop(name) {
    $('#pop_pr').fadeIn('fast');
    $('#popup').fadeIn('fast');
}
