function Popup_Mov(FName,INo,PWidth,PHeight){
	var url		="http://punyu02.shard.jp/puny/data/" + FName + INo + ".jpg";
	var Hurl	="img.html";
	var name	="Punyu_Sample_Image";
	Nwindow		=window.open( Hurl, name, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=" + PWidth + ",height=" + PHeight);
	Nwindow.document.open();
	Nwindow.document.write("<HTML><HEAD><TITLE>" + name +"</TITLE><link rel='stylesheet' type='text/css' href='bbs.css'>");
	Nwindow.document.write("<BODY bgcolor=#FFFFFF text=#5AA15A marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>");
	Nwindow.document.write("<img src="+ url + " border=0 alt=>");
	Nwindow.document.write("</BODY></HTML>");
	Nwindow.focus();
}
