/*	LastModified:00/12/25	*/

function showImg(imgPath, strTitle)	{

	strHtml = '<!--String Start-->\n' ;
	strHtml += '<html><head>' ;
	strHtml += '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">\n' ;
	strHtml += '<title>' + strTitle + '</title>\n' ;
	strHtml += '<style type="text/css">\n' ;
	strHtml += 'body { font-family: "Arial"; }' ;
	strHtml += 'h1 { font-size: 100%; }' ;
	strHtml += '#copy { margin: 1em 0; font-size: 76%; }' ;
	strHtml += '</style>\n' ;
	strHtml += '</head>\n' ;
	strHtml += '<body style="background: #F4F4F4; color: #800000;" onError="window.close();">\n' ;
	strHtml += '<div style="text-align: center;"><h1>' + strTitle + '</h1>\n';
	strHtml += '<img src="' + imgPath + '" alt="' + strTitle + '"><br>\n' ;
	strHtml += '<div id="copy">Copyright&copy; 2000-2007 FUTABA INDUSTRIAL CO.,LTD All Rights Reserved.</div>\n' ;
	strHtml += '<form><input type="button" value="Close" onClick="parent.window.close();" title="Close"></form>\n' ;
	strHtml += '</div></body></html>\n' ;


	newWin = window.open("","","scrollbars=1,toolbar=0,resizable=1,width=450,height=500") ;
	newWin.resizeTo(450,400) ;
	newWin.moveTo(0, 0) ;
	newWin.document.write(strHtml) ;
}
