﻿function MM_jumpMenu(targ,selObj,restore){ //v3.0
  //eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  //if (restore) selObj.selectedIndex=0;//
  if (selObj.selectedIndex!=0){
  	abrirFilial(selObj.options[selObj.selectedIndex].value);
  }
}

function abrirFilial(theURL) { //v2.0
//abre una nueva url desde el combo en el menú principal
	features="toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes";
	filial="win"
	window.open(theURL,filial,features);
}

function abrirEvento(theURL) { //v2.0
//amplia el evento en Agenda. Los html los arman en FCE
	features="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=650,height=550";
	win="evento"
	window.open("http://www.fcede.es/site/es/agenda/detalles/"+theURL,win,features);
}

function abrirPopUpHome(theURL) { //v2.0
//abre un popup desde la pagina de Inicio. Los html los arman en FCE
	features="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=650,height=550";
	win="evento"
	window.open("../../"+theURL,win,features);
}
