function replaceT(obj){
	if(obj.getAttribute('type')=='text')
	{ 
			obj.setAttribute('type','password');
	}
	obj.focus();
}

