function WinOpen(color,img,i_w,i_h,w_title){
	var wx,wy;
        wx = (i_w * 1.0)+20;
        wy = (i_h * 1.0)+70;
	 var Win1=window.open("","Subwin",'width='+wx+',height='+wy+'');	
	  if(navigator.appVersion.charAt(0)>=3){Win1.focus()};	
	  Win1.document.clear();	
	  Win1.document.write("<html><head><title>"+w_title+"</title><meta http-equiv=Content-Type content='text/html; charset=x-sjis'></head>");
 	  Win1.document.write("<body bgcolor="+color+" leftmargin=10 topmargin=10 marginwidth=0 marginheight=0>");
	  Win1.document.write("<center><img src="+img+" width="+i_w+" height="+i_h+" >");	
	  Win1.document.write("<br><form><input type=button value='•Â‚¶‚é' onClick='window.close()'></form>");	
	  Win1.document.write("</center></body></html>");	
	  Win1.document.close();	
}