/* ***************************************************************************************/
// Funcion que salta al enlace en el menu select
function saltar(objSel){
	var URL = objSel.options[objSel.selectedIndex].value;
	window.location.href = URL;
}

/* ***************************************************************************************/

/* ***************************************************************************************/
// Funcion abre ventana del tamaņo de la imagen
function abrir_img(fuente) {
	var oImg, ancho, alto; 
	oImg = new Image; 
	oImg.src=fuente; 
	ancho=oImg.width + 30; 
	alto=oImg.height + 30; 
	popWinx = window.open(fuente,'ima','width='+ancho+',height='+alto);
	 if(popWinx.focus) { popWinx.focus(); }
}
/* ***************************************************************************************/

/* ***************************************************************************************/
// Funcion que abre nueva ventana
function abrirventana(ubicacion,nomvent,propiedades, ancho, alto, isCenter) { 
 popWin = window.open(ubicacion,nomvent,propiedades+((propiedades!='')?',':'')+'width='+ancho+',height='+alto);
 if(popWin.focus) { popWin.focus(); }
 
}
/* ***************************************************************************************/