function focusText(obj) {
if (obj.defaultValue==obj.value)
obj.value = ""
obj.style.color = "black";
if (obj.getAttribute('type') == 'text') { 
obj.setAttribute('type','password');  
}
}

