﻿// For login
function Reset(object, type) {
    if (type == 'username') {
        if (object.value == 'Email Address')
            object.value = '';
        else if (object.value == '')
            object.value = 'Email Address';
    }
    else if (type == 'password') {
        if (object.value == 'password')
            object.value = '';
        else if (object.value == '')
            object.value = 'password';
    }
}

function LoginNow() {
    if (document.getElementById('ctl00_TopNavLogin1_txtEmail')) {
        document.getElementById('ctl00_TopNavLogin1_txtEmail').style.border = '1px solid red';
        document.getElementById('ctl00_TopNavLogin1_txtEmail').focus();
    }
}
