function bookMark ()

{

urlSite = "http://www.paysbasque-locations.com/biarritz_meubles/recherche.php"

nomSite = "Meublés - Biarritz"



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

 } 