function open_popup(imageName,imageWidth,imageHeight,alt)
        {
        if (screen.width > imageWidth)
            {posLeft = (screen.width - imageWidth) / 2;}
            else
            {posLeft = 0}

        if (screen.height > imageWidth)
            {posTop = (screen.height - imageWidth) / 2;}
            else
            {posTop = 0}

        newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
        newWindow.document.open();
        newWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
        newWindow.document.write('<html><head><title>Image</title></head>');
        newWindow.document.write('<body style="margin: 0px;" onblur="self.close()">');
        newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt="'+alt+'" />');
        newWindow.document.write('</body></html>');
        newWindow.document.close();
        newWindow.focus();
        }


var bookmarkurl = "http://www.escrime-troyes-tg.com" ;
var bookmarktitle = "Salle d'armes de Troyes Gymnique";

function addbookmark()
   {
   if (document.all)
       window.external.AddFavorite(bookmarkurl,bookmarktitle);
   }
