function popup(img,w,h)
{
	var w = window.open("",null,"height="+h+",width="+w+",status=yes,toolbar=no,menubar=no,location=no");
	w.document.open();
	w.document.write("<html><head><title></title></head><body style=\"margin:0px\"><img src=\"files/Image/"+img+"\" alt=\"\" /></body></html>");
	w.document.close();
}
function popup2(img,w,h)
{
	var w = window.open("",null,"height="+h+",width="+w+",status=yes,toolbar=no,menubar=no,location=no");
	w.document.open();
	w.document.write("<html><head><title></title></head><body style=\"margin:0px\"><img src=\""+img+"\" alt=\"\" /></body></html>");
	w.document.close();
}