
/* -------------------------------------------------------------------------- */

function showItem(name, url)
{
	var width = screen.width / 4;
	var height = screen.height / 4 + 200; /* +200 pour avoir plus de chance de voir le bas de l'image et la flèche de retour */
	var left = width / 4;
	var top = height / 4;

	var popup = window.open("", "", "status=1,resizable=1,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);
	
	popup.document.write("<html><head><title>" + name + "</title></head><body>\n");
	popup.document.write("<div align=\"center\"><b>" + name + "</b><br></br><img border=\"0\" width=\"100%\" src=\"" + url + "\" alt=\"" + name + "\"></img></div><br>\n");
	popup.document.write("<div align=\"right\"><a href=\"javascript:close()\"><img border=\"0\" src=\"./images/arrow-left.gif\"></img></a></div>\n"); 
	popup.document.write("</body></html>\n");	
}

/* -------------------------------------------------------------------------- */


