//Fonction permettant d'afficher un pop-up pour la carte
function popup(page) 
{
  window.open(page, '', 'resizable=no, location=no, width=250px, height=150px, menubar=no, status=no, scrollbars=no');
} 
function popupimage(img) 
{
  titre="BlInd€d";
  w=open("",'image','width=250px,height=150px,toolbar=no,scrollbars=no,resizable=no');
  w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
  w.document.write("<BODY leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
  w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
  w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 alt='Mon image'>");
  w.document.write("</TD></TR></TABLE>");
  w.document.write("</BODY></HTML>");
  w.document.close();
} 