function uFocus(f)
{
    f.select();
}
function pFocus(f)
{
    f.type="password";
    f.select();
}
function pLostFocus(f)
{
    if(f.value=="Password")
        f.type="text";
    else
        f.type="password";
}