// Abrir y cerrar ventanas secundarias
var win = null;
var winexpe = null;

function ventanaSecundaria (URL, name, x, y ){
   if(win == null || win.closed){
	   win = window.open(URL, name, "width="+x+",height="+y+",status=no,toolbar=no,menubar=no,location=no,scrollbars=yes, resizable=no")
   }else{
	   	win.focus();
   }
}

/* --------------------------------------------------- */
/* VENTANA SECUNDARIAS DE EXPERIENCIAS */
function vExperiencias (URL, name, x, y ){
   if(winexpe == null || winexpe.closed){
	   winexpe = window.open(URL, name, "width="+x+",height="+y+",status=no,toolbar=no,menubar=no,location=no,scrollbars=yes, resizable=no")
   }else{
	   	winexpe.focus();
   }
}
/* --------------------------------------------------- */

function ventanaSecundaria2 (URL){
   window.open(URL,null,"width=780,height=660,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes")
}

function cerrarVentana()
{	this.close(); }