var pic
function popup(pic, wi, hi)
{
	var win1, temp
	temp = "left=300,top=200,resizable=no,toolbar=0,width="+wi+",height="+hi;
	win1 = window.open("", "", temp, "replace");
	win1.document.open();
	win1.document.writeln("<body style='margin: 0px; padding: 0px;'><img src='"+pic+"' onclick='window.close()' style='cursor: pointer'></body>");
}

