// JavaScript Document

function zoom(a_image, a_width, a_height)
{
	if(a_width == undefined)
	{
			a_width=600;
	}
	if(a_height == undefined)
	{
			a_height=450;
	}
	proprietes = "width="+a_width+", height="+a_height+", toolbar=0, scrollbars=0, resizable=0";
	w=open("", "image", proprietes);
	w.document.write("<html><head><title>Zoom</title><meta http-equiv='imagetoolbar' content='no' /></head>");
	w.document.write("<body onload='window.focus' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
	w.document.write("<img src='../images/HD/" + a_image + "' border='0' alt='' />");
	w.document.write("</body></html>");
	w.document.close();
}
