// JavaScript Document
function fecha(){ hoy = new Date(); mes = hoy.getMonth()+ 1; ano = hoy.getFullYear(); if (mes == 1) mes = "Enero"; if (mes == 2) mes = "Febrero"; if (mes == 3) mes = "Marzo"; if (mes == 4) mes = "Abril"; if (mes == 5) mes = "Mayo"; if (mes == 6) mes = "Junio"; if (mes == 7) mes = "Julio"; if (mes == 8) mes = "Agosto"; if (mes == 9) mes = "Septiembre"; if (mes == 10) mes = "Octubre"; if (mes == 11) mes = "Noviembre"; if (mes == 12) mes = "Diciembre"; hoyes = hoy.getDate() + " de " + mes + " de " + ano; return (hoyes); }
function abrir(esto){window.document.getElementById(esto).style.visibility='visible'; }
function cerrar(esto){window.document.getElementById(esto).style.visibility='hidden'}
function ver(esto){esto.style.visibility='visible'}
function ocultar(esto){esto.style.visibility='hidden'}
function cambiareg(tipo){ if(tipo=='Profesionista'){ document.getElementById('instedu').style.display='none'; document.getElementById('titprof').style.display='inline'; document.getElementById('laboral').style.display='inline'; document.getElementById('academ').style.display='inline'; document.getElementById('estlab').style.display='inline'; } else{ document.getElementById('titprof').style.display='none'; document.getElementById('laboral').style.display='none'; document.getElementById('academ').style.display='none'; document.getElementById('estlab').style.display='none'; document.getElementById('instedu').style.display='inline'; } }
function remchecks(id){ var elemento=document.getElementById(id); var forma=elemento.form.elements; for(var i=0; i<forma.length; i+=1) if(forma[i].name==id){ forma[i].parentNode.removeChild(forma[i]);  i=0; } }
function remover(lista){ var campos=lista.split(','); for(var i in campos){ var elemento=document.getElementById(campos[i]); if(elemento.type!='checkbox') elemento.parentNode.removeChild(elemento); else remchecks(campos[i]); } }
function enlistar(campo,nombre){ if(campo.checked==true) document.getElementById(nombre).value+=campo.value+', '; else document.getElementById(nombre).value=document.getElementById(nombre).value.replace(campo.value+', ',''); }
function verimg(imagen){
	window.open('verimg.php?f='+imagen,'foto' ,'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=400,top=25 ,left=25')
}