// JavaScript Document Portfolio

<!-- 
function popupcentree(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);
}
	
function affichemaxi(chemin){ 
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>| HTTP://WWW.SCRATCHIDESIGN.COM |</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 BGCOLOR=#000000><CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=image onLoad="window.resizeTo(document.image.width+11,document.image.height+61);window.moveTo(largeurEcran = (screen.width - document.image.width) / 2 , hauteurEcran = (screen.height - document.image.height) / 2)" onClick="window.close()" style="cursor:hand" alt="FERMER LA FENETRE"></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
--> 
