function despliega(esto) {//despliega o oculta según el estado actual
	vista=document.getElementById(esto).style.display;
	if (vista=='none')
		vista='block';
	else
		vista='none';
	document.getElementById(esto).style.display = vista;
}
function checkmail(e){
	var emailfilter=/^\w+[\+\.\w-]*@([\w-]+\.)*\w+[\w-]*\.([a-z]{2,4}|\d+)$/i
	var returnval=emailfilter.test(e.value)
	if (returnval==false){
		alert("Ingrese una cuenta de e-mail verdadera.")
		e.select()
	}
	return returnval
}
function abrirventana(pagina, nombreventana, width, height, windowfeatures) {
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	windowfeatures += ', width='+width+',height='+height+',top='+wint+',left='+winl;
	window.open(pagina, nombreventana, windowfeatures);
}