function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<html><head><title>Image</title></head><body style="margin:0px;padding:0px;text-align:center"><img src="http://www.cabanebois.com/'+chemin+'" borde="0" name="image" onLoad="window.resizeTo(document.image.width+14,document.image.height+32)" /></body></html>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	
function openVideo(chemin)
{
	html = '<html><head><title>Video</title></head><body style="margin:0px;padding:0px;text-align:center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="320" height="240" id="design" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="http://www.cabanebois.com/swf/'+chemin+'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="http://www.cabanebois.com/swf/'+chemin+'" quality="high" bgcolor="#ffffff" width="320" height="240" name="design" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>/body></html>';
	popupImage =  window.open ('','_blank', 'height=240, width=320, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
}

