function img_open(){

	var $l,w;

	$l ="<html>\n";
	$l+="<head>\n";
	$l+="<meta http-equiv=\"Content-Type\" content=\"text/html; charset=EUC-JP\">\n";
	$l+="<title>"+arguments[0]+"กร"+arguments[4]+"</title>\n";
	$l+="</head>\n";
	$l+="<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n";
	$l+="<a href=\"javascript:window.close()\"><img src=\""+arguments[1]+"\" border=\"0\" width=\""+arguments[2]+"\" height=\""+arguments[3]+"\"></a>\n";
	$l+="</body>\n";
	$l+="</html>";

	w=window.open('','img_win','width='+arguments[2]+',height='+arguments[3]+',scrollbars=1,status=1,toolbar=0,location=0,directories=0,resizable=1,menubar=0');
	w.document.open();
	w.document.write($l);
	w.document.close();
	w.resizeTo(arguments[2]+32,arguments[3]+54);
	w.focus();
}