// JavaScript Document
function PopupImage(img) {
	w=open("",'image','top=0,left=0,width=400,height=400,toolbar=no,scrollbars=no,resizable=yes,status=no');	
	w.document.write("<HTML><HEAD><TITLE>"+" bon de commande "+"</TITLE><link href='styles.css' rel='stylesheet' type='text/css' /></HEAD>");
	w.document.write("<SCRIPT type='text/javascript'>function size()  { window.resizeTo(400, 950); window.focus(); }</"+"SCRIPT>");
	w.document.write("<BODY onload='size()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><div align='center'><a href='javascript:window.close()'><IMG src='"+img+"' border=0></a><br /><a href='javascript:window.print();' title='Imprimer le jeux'><img src='images/imprimante.jpg' border='0' alt='Imprimer' title='Imprimer' /></a><br /><span class='ContenuText'>Imprimer</span></div>");
	w.document.write("</BODY></HTML>");
	w.document.close();
}

