//POP UP

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function open_window(tupagina,altura_popup,anchura_popup)
{
var H = (screen.height - altura_popup) / 2;
var L = (screen.width - anchura_popup) / 2;
pop_up = window.open(tupagina,"Popup","status=no,scrollbars=no,resizable=no,height="+altura_popup+",width="+anchura_popup+",top="+H+",left="+L);
}



function MM_jumpMenu(targ,selObj,restore)
{ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}
function popup(url, width, height)
{
	void(window.open(url,"","width="+width+" height="+height+" noresizable"));
}


function Abrir_Ventana(el_url) { 
	var especificaciones="top=0, left=0, toolbar=no,location=no, status=no,menubar=no,scrollbars=yes, resizable=no, width=420,height=380";
	var titulo="Titulo";
window.open(el_url,titulo,especificaciones); 
}

function popYcierra(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  this.window.close();
}


function abven2 (pag,w,h) {
ventana=window.open(pag,'edb','toolbar=no,location=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width='+ w + ',height=' + h);
} 