





/* Popups */function AbrirPopUp (iNumero,sector) {

	var sNombre = '';
	var sScroll = 'yes';
	var sWidth = '556';
	var sHeight= '450';
	switch (iNumero) {

		case 1:
			sNombre = '/musica/musica.html';
			sWidth = '250';
			sHeight= '340';
			sScroll = 'no';
			break;
			
	}		

window.open (sNombre, 'ventana', 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=' + sScroll + ',width=' + sWidth + ',height=' + sHeight + ',left=' + (screen.availWidth - sWidth) / 2 + ',top=' + (screen.availHeight - sHeight) / 2 + '');
}