function change(obj){
	obj.value = 'Password';
	obj.setAttribute('type','text');
}

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