function Expand(fname) {
	
	var fname;
	var nw_win;
	var output;
	
	
	output ="";
	output += "<html>";
	output += "<head>";
	output += "<title>DENSO SPARK PLUGS</title>";
	output += "<link rel=stylesheet type=text/css href=../common/default.css></head>";
	output += "<body>";
	output += "<div align='center'><img src='";
	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=220,height=520,scrollbars=1, resizable=1");
	nw_win.document.open();
	nw_win.document.write(output);
	nw_win.document.close();

}


function ExpandConf(fname) {
	
	var fname;
	var nw_win;
	var output;
	
	
	output ="";
	output += "<html>";
	output += "<head>";
	output += "<title>DENSO SPARK PLUGS</title>";
	output += "<link rel=stylesheet type=text/css href=../common/default.css></head>";
	output += "<body>";
	output += "<div align='center'><img src='";
	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=1000,height=520,scrollbars=1, resizable=1");
	nw_win.document.open();
	nw_win.document.write(output);
	nw_win.document.close();

}

//-->
