function launch(vis1,vis2,vis3,vis4,vis5)
{
	document.getElementById("box_biarritz").style.display=vis1;
	document.getElementById("box_ciboure").style.display=vis2;
	document.getElementById("box_urrugne").style.display=vis3;
	document.getElementById("box_arcangues").style.display=vis4;
	document.getElementById("box_stjean").style.display=vis5;
}
function launch_tab(vis6)
{
	document.getElementById("box_table").style.display=vis6;
}
function launch_carte(vis7)
{
	document.getElementById("box_carte").style.display=vis7;
}

function bookMark (urlSite, nomSite)
{

/* TRAITEMENT DES NAVIGATEURS */

// internet explorer windows
if(window.external)
{
window.external.AddFavorite(urlSite,nomSite)
}

// internet explorer mac
if (document.all && 
(navigator.userAgent.indexOf('Win') < 0))
{
alert ("COMMAND + B to bookmark " + nomSite + " !")
}

// netscape 6.x
if (window.sidebar)
{
window.sidebar.addPanel(nomSite,urlSite,"")
}

// netscape 4.x
if (document.layers)
{
alert ("CTRL + D to bookmark " + nomSite + " !")
}

// op?ra
if (navigator.userAgent.indexOf('Opera') != -1) 
{
alert ("CTRL + T to bookmark " + nomSite + " !")
}
} 

function CheckIsIE() 
{ 
    if  (navigator.appName.toUpperCase() == 'MICROSOFT INTERNET EXPLORER')  { return true;} 
    else { return false; } 
 } 
 function printMe() {
	if (CheckIsIE() == true) 
   { 
      document.iCiboure.focus(); 
      document.iCiboure.print(); 
   }      
   else 
     { 
        window.frames['iCiboure'].focus(); 
        window.frames['iCiboure'].print(); 
   } 

}

function popup( url,nom,options) {
	if (options!="") 
		window.open( url, nom, options);
	else
		window.open( url,nom,'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=509,height=327');
}