function Expand(fname) {
	
var fname;
var nw_win;
var output;
	
	output ="";
	output += "<html>";
	output += "<head>";
	output += "	<title>PLUG STUDIO / NGK</title>";
	output += "<body>";
	output += "<div align='center'><img src='images/";
	output += fname;
	output += "'>";
	output += "<br><br>";
	output += "<font class=middle>| <a href='javascript:window.close();'>Close</a> |</font></div>";
	output += "</body></html>";
	
	nw_win= window.open("","","toolbar=0,location=0,directories=0,width=720,height=520,scrollbars=1, resizable=1");
	nw_win.document.open();
	nw_win.document.write(output);
	nw_win.document.close();

}
//-->
