/**
 * ToitDeBois.com - AdministrationSite Visiteurs
 *
 * @author Kharma
 * @version 1.0
 * @copyright 2007
 */
function popimage(cible,width,height) {
	html = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">';
	html += '<meta http-equiv="Pragma" content="no-cache"><meta http-equiv="Cache-Control" content="no-cache">';
	html += '<meta http-equiv="Expires" content="-1"><title>.: ToitDeBois.com :.</title>';
	html += '<style>BODY {position: absolute; top: 0px; left: 0px; margin: 0px; background-color: white;} ';
	html += 'TABLE {margin:0px; border-style:none;} .fond {background: url(' + cible + ') no-repeat;}</style>';
	html += '<SCRIPT LANGUAGE="JavaScript">function clicie() {if ((event.button==2)||(event.button==3)) {window.close();}} function clicns(e){if(e.which==3){window.close();return false;}}if (document.all) {document.onmousedown=clicie;}if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}if (window.sidebar) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}</SCRIPT></head>';
	html += '<body scroll=no leftmargin=0 marginwidth=0 topmargin=0 marginheight=0 onBlur="top.close();">';
	html += '<table cellspacing=0 cellpadding=0 align=center valign=middle width=100% height=100%><tr>';
	html += '<td align=center valign=middle><img src="' + cible + '" border=0></td>';
	html += '</tr></table>';
	html += '</body></html>';
	popupImage = window.open('','_blank','top=100, left=100, height=' + (height+20) + ', width=' + (width+20) + ', location=no, hotkeys=no, directories=no, menubar=no, scrollbars=no, toolbar=no, status=yes, resizable=yes');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
}
