
  
// Ouverture photo PopUp à sa dimension ( Compatible IE5+ / NN6+ / Mozilla )

function OuvreFenetre ( img, lib )
{
   titre = "Tout Rennes Au Dojo / Arts Martiaux à Rennes ( 35, Bretagne, France ) : " + lib;
   
   oFenetre = window.open ( '', '', 'width=1200,height=1200,toolbar=no,scrollbars=no,resizable=yes' );

   oFenetre.document.write ( "<html><head><title>"+titre+"</title></head>" );
   oFenetre.document.write ( "<script type=\"text/javascript\">function twAjustePopUp() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+70); window.focus();} else { setTimeout('twAjustePopUp()',1000) } }</"+"script>");
   oFenetre.document.write ( "<body onload='twAjustePopUp()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
   oFenetre.document.write ( "<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>");
   oFenetre.document.write ( "<img src='"+img+"' border='0' alt='"+titre+"' title='"+titre+"'>");
   oFenetre.document.write ( "</td></tr></table></body></html>");

   oFenetre.document.close ();
}


// Anti-Spam

function MonAmi ( nom, domaine, css, sujet, image )
{
   var ami = nom + unescape ( '&#64;' ) + domaine;
   
   if ( image != "" )
      return '<a href="mailto:' + ami + '?SUBJECT=' + sujet + '" class="' + css + '"><img src="' + image + '" border="0"></a>';
   else
      return '<a href="mailto:' + ami + '?SUBJECT=' + sujet + '" class="' + css + '">' + ami + '</a>';
}


