// Open new window
function win(pic,title)
{
	option="width=420,height=280,top=100,left=100,resizable=0,toolbar=0,address=0,menubar=1,location=0";
	w=window.open("","pic",option);
	w.document.open();
	w.document.write("<title>" + title + "</title>");
	w.document.write("<table width='100%' height='100%' border='0' cellspacing='0' cellpadding='0'>");
	w.document.write("<tr>");
	w.document.write("<td align='center' valign='middle'><img src='" + pic +"' alt='" + title + "'></td>");
	w.document.write("</table>");
	w.document.close();
}