﻿function TextboxClickOut(control) {
    var controlname = control.id;
    if (controlname.indexOf('homeusername') > -1) {
        if (control.value == '')
        { control.value = 'Username'; }
        else { ; }
    }
    else if (controlname.indexOf('homepassword') > -1) {
        if (control.value == '')
        { control.value = 'Password'; }
        else { ; }
    }
}

function TextboxClickIn(control) {
    var controlname = control.id;
    if (controlname.indexOf('homeusername') > -1) {
        if (control.value == 'Username')
        { control.value = ''; }
        else { ; }
    }
    else if (controlname.indexOf('homepassword') > -1) {
        if (control.value == 'Password')
        { control.value = ''; ; }
        else { ; }
    }
}
    
