// JavaScript Document}

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.style.color = "black";
thefield.value = ""
}
function clearText2(thefield){
if (thefield.defaultValue==thefield.value)
thefield.type = "password";
thefield.style.color = "black";
thefield.value = ""
}

function passit(ip){
var np=ip.cloneNode(true);
np.type='password';
if(np.value!=ip.value)
np.value=ip.value;
ip.parentNode.replaceChild(np,ip);
}
