function PopImg(imgUrl,titre) {
	var hauteur = 300;
	var largeur = 300;
	var top = (screen.height-hauteur)/2;
	var left = (screen.width-largeur)/2;
	i1 = new Image;
	i1.src = imgUrl;
	var html = '<html><head><title>'+titre+'</title></head><body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0><center><img src="js/%27+imgUrl+%27" border="0" name="MyImage" onload="window.resizeTo(document.MyImage.width+10,document.MyImage.height+27)" onclick="self.close()"></center></body></html>';
	var popupImage = window.open('','pop','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,status=1,top='+top+',left='+left+',width='+largeur+',height='+hauteur);
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
	if (parseInt(navigator.appVersion) >= 4) { titre.window.focus(); }
}

function popup(url,name,w,h) {
	var l = (screen.availWidth-10 - w) / 2;
	var t = (screen.availHeight-20 - h) / 2;
	features = "width="+w+",height="+h+",left="+l+",top="+t+",screenX="+l+",screenY="+t+",scrollbars=1,resizable=1,location=0,menubar=0,toolbar=0,status=1";
	window.open(url, name, features);
	if (parseInt(navigator.appVersion) >= 4) { name.window.focus(); }
}

function Preload() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=Preload.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function Restore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_findObj(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}
function Swap() { //v3.0
  var i,j=0,x,a=Swap.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


function stopError() { return true; }
window.onerror=stopError;

<!--
// ==========================
// (C) 2000 by CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// blink speed in miliseconds
var rate = 500;
// the three blink colors
var Color1 = "#887781"
var Color2 = "#C41200"
// the color if/when turned off (no-blink color)
var ColorX = "#887781"
// set this to true for auto start; else, false
var DoIt = true

bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"
ok = false

var i=0;
function doTriStateRainbowLink(){
   ok =  true
   if ((bNS && bV >= 5) || (bIE && bV >= 4)){
      i++;
      if (i==1) C = Color1
      if (i==2) C = Color2
      if (!DoIt) C = ColorX       
      if (bIE) BlinkLink.style.color=C
      if (bNS) document.getElementById('BlinkLink').style.color = C
      if (i > 2) i = 0
      if (DoIt) timer=setTimeout('doTriStateRainbowLink()', rate)
   }      
}
function doOnOff(a){
   if (ok){
      if (a =="off") {DoIt = false}
      if ((a =="on")&&(!DoIt)) {
          DoIt = true
          doTriStateRainbowLink()
      }
   }
}
//-->
