function validate(text1,text2,text3,text4) {
    if (text1==text2 && text3==text4)
        load('affiliate_expert.asp');
    else
    {
        alert('Login incorrect..');
    }
}

function load(url) {
    location.href=url;
}