<!-- 
function spread(n){

var DB2 = new Array();
	DB2 = DB[n].split(",");

var showgd = '<html>'
+ '<head>\n'
+ '<title>'
+ title
+ '</title>\n'
+ '<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">\n'
+ '<link rel="stylesheet" href="text_goods.css">\n'
+ '</head>\n'
+ '<body bgcolor="#FFFFCC" leftmargin="10" topmargin="10" marginwidth="10" marginheight="10">\n'
+ '<center>\n'
+ '<table border="0" cellpadding="0" cellspacing="0" width="284" class="sub14">\n'
+ '<tr><td colspan="2" bgcolor="#FFFFFF" align="center" height="214"><img src="image/'
+ DB2[0]
+ '"></td></tr>\n'
+ '<tr><td colspan="2" bgcolor="#FFFFCC" height="5">'
+ '<img src="image/spacer.gif" width="1" height="5"></td></tr>\n'

+ '<!--<tr><td align="right" width="70" bgcolor="#FFFF99">'
+ koumoku1
+ '</td><td width="214" height="20" bgcolor="#FFFF99">'
+ DB2[1]
+ '</td></tr>-->\n'

+ '<tr><td colspan="2" align="right" valign="top">\n'
+ '<a href="javascript:window.close()"><img src="image/close.gif" width="75" height="23" border="0"></a>\n'
+ '</td></tr>\n'
+ '</table>\n'
+ '</center>\n'
+ '</body>\n'
+ '</html>\n';

	NW = window.open(
			"",
			"stuffpre",
			"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=304,height=282")
	NW.focus();
	NW.document.open();
	NW.document.write(showgd);
	NW.document.close();

}
// -->

