function bookMark ()
{
urlSite = "http://www.ciboure.fr/"
nomSite = "Ciboure - Pays Basque"

/* 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');
}
