<!--
function popup(url, titre, largeur, hauteur)
{
window.open(url, titre, 'toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, copyhistory=no, width='+largeur+', height='+hauteur+', left=300, top=50');
}

function popup_scrollbars(url, titre, largeur, hauteur)
{
window.open(url, titre, 'toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=no, copyhistory=no, width='+largeur+', height='+hauteur+', left=300, top=50');
}

function PopupImage(img) {
	titre="Popup Image";
	w=open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=no,status=no');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE>");
	w.document.write("<SC"+"RIPT language=java"+"script> function checksize()  { if (document.images['img'].complete) {  window.resizeTo(document.images[0].width+10,document.images[0].height+48); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT></HEAD>");
	w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><IMG src='"+img+"' border=0 name='img'>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}

function popup_centrer(nom) {
  var Option = 'width=1000,height=600,scrollbars=1,resizable=1'
  var X = (screen.width - 1000) / 2
  X -= 10
  var Y = (screen.height - 600) / 2
  Y -= 30
  Option += ',left=' + X + ',screenX=' + X
  Option += ',top=' + Y + ',screenY=' + Y
  Fenetre = window.open(nom,'f1',Option)
}
//-->
