
// ************************************************************************************************
//// SCRIPTS UTILIZADOS EN LA WEB DE LANZAROTE ///

function subrayaOPC (celda) { 
	/*Para hacer que salga un raya de subrayada después de cada CELDA de menú PULSADA
	ArrayCeldassubrayado se define en el HTML*/
	for (i=0;i<ArrayCeldassubrayado.length;i++)
	{
		oculta (ArrayCeldassubrayado[i]);
	}
	
	muestra(celda);
}



function abroPopUp (url,porcent){
	//Se pueden enviar el % del tamaño de la venta como parAmetro, si no se indica, lo abra al 90 %
	if (!porcent) {porcent= 0.90};
	window.open(url,'_blank'," width ="+parseInt(screen.width * porcent )+"px,height="+parseInt(screen.height * porcent)+"px,  location=no,resizable=yes,scrollbars=yes,top=0px,left=0px")
}


// ************************************************************************************************
