function toPwd(campo,nombre){
	var input = document.createElement("input");
	var pun = document.getElementById(campo);
	input.setAttribute("name", nombre);
	input.setAttribute("type", "password");
	input.setAttribute("value", "");
	input.setAttribute("class", "cajas2");
	input.setAttribute("size","16");
	pun.parentNode.replaceChild(input, pun);
}

function toText(campo,nombre){
	var input = document.createElement("input");
	var pun = document.getElementById(campo);
	input.setAttribute("name", nombre);
	input.setAttribute("type", "textbox");
	input.setAttribute("value", "");
	input.setAttribute("class", "cajas2");
	input.setAttribute("size","16");
	pun.parentNode.replaceChild(input, pun);
}

function limpiaBox(campo){
	document.getElementById(campo).value = '';
}
function estadoAnterior(campo,texto,tipo){
	if(document.getElementById(campo).value == ''){
		if(tipo=='text'){
			toText(campo,campo);
			document.getElementById(campo).value = texto;
		}
	}
}