// ************************************************************************
// At WebData - Version 1.3.2 - POPUP_IMAGE.JS
// ************************************************************************
// Conception & Programmation : At ss2i - http://www.at-ssii.com
// Copyright © 1998-2004 : At services - http://www.at-services.ch
// ************************************************************************
// Dernières modifications : 23-12-2003 01:01
// ************************************************************************
// POPUP IMAGE AVEC REDIMENSION AUTOMATIQUE
// ************************************************************************
// <a href="javascript:popupimage('***fu13***');">

function popupimage(chemin)
{	
	var html;
	html = '<HTML>\n'
	+ '<HEAD>\n'
	+ '<TITLE>D&eacute;tail de la photo</TITLE>\n'
	+ '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\n'
	+ '<link rel="stylesheet" href="/charte/style.css" type="text/css">\n'
	//+ '<script language="JavaScript">\n'
	//+ 'function clique() { if (event.button==2) { alert(\'Tous droits réservés.\\n\\nRenseignements :\\nn.fontanel@tuningcenter.com\'); } }\n'
	//+ 'document.onmousedown=clique\n'
	//+ '</script>\n'
	+ '</HEAD>\n'
	+ '<BODY onLoad="window.focus();window.resizeTo(document.imageTest.width+35,document.imageTest.height+58);" bgcolor="#FFFFFF" leftmargin="10" topmargin="10" marginwidth="10" marginheight="10">\n'
	+ '<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">\n'
	+ '<tr><td align="center" valign="middle">'
	//+ '<img class="popup" src="'+chemin+'" border="0" name="imageTest">'
	+ '<img src="'+chemin+'" border="0" name="imageTest"></td></tr>\n'
	+ '</table>\n'
	+ '</BODY>\n'
	+ '</HTML>'
	
	var popup;
	popup = window.open('','popupgo','left=100,top=200,width=10,height=10,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	//popup.document.open();
	popup.document.write(html);
	popup.document.close();
}
