//Fonction pop-up images
function _popupWindow(ime, x, y, titre){
    x2 = x+40;
    y2 = y+40;
	eval("_popup=window.open('','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+ x2 +",height="+ y2 +"')");
	_popup.document.write("<html><title>Sea Dolphin - Images - "+ titre +"</title><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 bgcolor='#88561C'><table align='center'><tr><td align='center'><font color='white'><b>Cliquez sur l'image pour fermer la fenêtre</b></font></td></tr><tr><td><a href='javascript:window.close();' title='Cliquez pour fermer'><img style='border:1px solid black;' src='"+ime+"'  border='0' width='"+ x +"' height='"+ y+"'></a></body></tr></td></table></html>");
	_popup.document.close();
}

