﻿

function switch1(div) 
	{
var option=['0','1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24','album','eve','sushilist','midiexpress','cartevin'];

	for(var i=0; i<option.length; i++) 
		{
		 if (document.getElementById(option[i])) 
			{
			 obj=document.getElementById(option[i]);
			 obj.style.display=(option[i]==div)? "block" : "none";
			}
		}
	}
	
function showAlbum(div){
	for(var i=0; i<nbAlbum; i++){
		 if (document.getElementById('album_'+i)){ document.getElementById('album_'+i).style.display = 'none'; }
	}
	document.getElementById(div).style.display = 'block';
}
function showEve(div){
	for(var i=0; i<nbEve; i++){
		 if (document.getElementById('eve_'+i)){ document.getElementById('eve_'+i).style.display = 'none'; }
	}
	document.getElementById(div).style.display = 'block';
}


window.onload = function () 
		{switch1('0');}


function open_new_window(filename)
{
	var path = filename;
	
	newWindow = window.open( path, "_blank", "statusbar, menubar, HEIGHT=600, WIDTH=900, resizable");
	newWindow.focus()
}
