function FixeTailleWindow()
{
	window.resizeTo(800,700);
	window.focus();
}

function PopupImage(img,titre) 
{
//  	var titrewin="Texte commun - " + titre;
  	var titrewin="Thierry Millot - Guide de pêche mouche - "+ titre;

w=open("","image",40,40,"witdh=10, height=10,toolbar=no,scrollbars=no,resizable=no");	
	w.document.write("<HTML>\n<HEAD>\n<TITLE>"+titrewin+"</TITLE>\n");
	w.document.write("<META HTTP-EQUIV=\"imagetoolbar\" CONTENT=\"no\">\n</HEAD>\n");
	w.document.write("<SCRIPT language=\"javascript\">\n function checksize()\n  { if (document.images[0].complete)\n {  window.resizeTo(document.images[0].width+40,document.images[0].height+40);\n");
	w.document.write("var top=(screen.height-(document.images[0].height+40))/2 -50;\n var left=(screen.width-(document.images[0].width+40))/2;\n window.moveTo(left,top); \n");
	w.document.write("window.focus(); \n }\n else { setTimeout('check()',250) }\n }\n");
	w.document.write("</"+"SCRIPT>\n");

	w.document.write("<BODY bgcolor='#ffffff' onload=\"checksize()\" leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>\n");
	w.document.write("<div align=\"center\">\n<IMG src=\""+img+"\" border=\"0\">\n</div>\n");
	w.document.write("</BODY>\n</HTML>");
	w.document.close();
}

 


// ---------------------------------------------------------------------------------------------

function WinOpen(url,caracteristiquesFenetre) 
{
   msg=open(url,"",caracteristiquesFenetre);
}

// ---------------------------------------------------------------------------------------------

function PopupCentrer(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

