function displayPhotoHorizontal(imageUrl)
{
        imgWin=window.open('about:blank','','height=550,scrollbars=yes,width=650','','','','');

        imgWin.document.write(
        '<html>'
        + '<head>'
        + '<title>Francis Rivard - Photos</title>'
        + '<link rel="stylesheet" type="text/css" href="../css/salaam.css">'
        + '</head>'
        + '<body bgcolor="#F9AF64" onload="self.focus()" scroll="yes">'
        + '<table align=center border=0>'
        + '<tr align=center>'
        + '<td height=80 valign=top>'
        + '<img alt="Titre" src="../graphiques/menu/salaam-titre-de-page.gif" border=0>'
        + '</td>'
        + '</tr>'
        + '<tr>'
        + '<td align=center>'
        + '<img alt="Photo" src='+imageUrl+' border=1>'
        + '</td>'
        + '</tr>'
        + '<tr>'
        + '<td height=50>'
        + '</td>'
        + '</tr>'
        + '</table>'
        + '</body></html>')
}
