
function replaceType(obj){
	var newO=document.createElement('input');
	newO.setAttribute('id', obj.getAttribute('id'));
	newO.setAttribute('type','password');
	newO.setAttribute('name',obj.getAttribute('name'));
	newO.setAttribute('value', '');
	obj.parentNode.replaceChild(newO,obj);
	newO.focus();
}
