function ApriPopUp(str) {
	searchWin = window.open(str,'ApriPopUp','scrollbars=yes,resizable=yes,width=250,height=250,status=no,location=no,toolbar=no');
}

function ImageMax(chemin)
   {
   i1 = new Image;
   i1.src = chemin;
   html = '<html><head><title>-Diecasting-</title></head><body scroll="no" leftmargin="0"   rightmargin="0" marginwidth="0" topmargin="0" marginheight="0" onBlur="top.close()"><img src="'+chemin+'" border="0" name="ImageMax" onLoad="window.resizeTo(document.ImageMax.width+10,document.ImageMax.height+30)"></body></html>';
   popupImage = window.open('','_blank','toolbar=no,location=no,directories=no,menuBar=no,scrollbars=no,resizable=no,');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close();
};

