﻿

function utfFocus() {
    document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userName').value = "";
    document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userName').setAttribute("class", "utFieldActive");
}

function utfFocusLost() {
    if (document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userName').value == "") {
        document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userName').value = "Username";
        document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userName').setAttribute("class", "utFieldInactive");
    }
}

function pfFocus() {
    document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userPassword').value = "";
    document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userPassword').type = "password";
    document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userPassword').setAttribute("class", "upFieldActive");
}

function pfFocusLost() {
    if (document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userPassword').value == "") {
        document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userPassword').type = "text";
        document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userPassword').setAttribute("class", "upFieldInactive");
        document.getElementById('ctl00_cphHeaderLoginForm_userControl_headerLoginForm_userPassword').value = "Password";
    }
}
