function open_large_image(image_name,w,h){

	header = "<html><head><title>Amano Crafts</title><link rel=STYLESHEET type=text/css href=style.css></head><body><form><div align=center><p>";
	footer = "<p><input type=button value=Close onClick=window.close()></div></form></body></html>";

	h=h+100;
	w=w+50;

	image_doc = window.open("","image","scrollbars=no,height="+h+",width="+w);
	image_doc.document.write(header);
	image_doc.document.write("<img src=media/" + image_name + " border=0>");
	image_doc.document.write(footer);
	image_doc.document.close();
}