/*****************************************************************************
** Copyright (C) 2002, Stephen Gould 
**
** FILENAME:	acc&other.js
** AUTHOR:	AN
** COMMENCED:	4 Jun 03
** MODIFIED:	
** DESCRIPTION:	javascript for dymanic menus in web pages for CWC
**
*****************************************************************************/

var sideHeading = "Accessories & Other Equipment";

var sideMenuArray = new Array(
	"Actuated Ball Valves", "", "acc_abv.html",
	"Cabinets for Manuals", "& Service Reports","acc_cabs.html",
	"Calibration Columns", "(Drawdown Cylinders)", "acc_calcol.html",
	"Chlorine/Bromine", "Mixing Chambers", "acc_mix.html",
	"Conductivity", "Probes", "acc_tdsprobes.html",
	"Dosing Funnels", "", "acc_funnels.html",
	"Dosing Pots","","acc_dp.html",
	"Injection/Suction", "Lances", "acc_lances.html",
	"Mounting", "Skids/Stands", "acc_ct_stands.html",
	"pH/ORP Simulator", "", "acc_sim.html",
	"pH/ORP Buffer", "Solutions", "acc_sol&buff.html",
	"Pressure Reducing Valves (PRV's)", "", "acc_prv.html",
	"Static Mixers", "", "acc_statmix.html",
	"Tank Eductors", "", "acc_eductor.html"
	);

var sideSubMenu = new Array();

sideSubMenu[0] = new Array();
sideSubMenu[1] = new Array();
sideSubMenu[2] = new Array();
sideSubMenu[3] = new Array();
sideSubMenu[4] = new Array();
sideSubMenu[5] = new Array();
sideSubMenu[6] = new Array();
sideSubMenu[7] = new Array();
sideSubMenu[8] = new Array();
sideSubMenu[9] = new Array();
sideSubMenu[10] = new Array();
sideSubMenu[11] = new Array();
sideSubMenu[12] = new Array();
sideSubMenu[13] = new Array();

/* Functions *****************************************************************/

function OpenImageWindow(filename) {
	var handle = window.open("", "ImageWindow", "height=650px,width=700px");
	handle.document.open("text/html", "replace");
	handle.document.write("<html><head><title>ImageWindow</title>");
	handle.document.write("<script language=\"javascript\" type=\"text/javascript\">");
	handle.document.write("</script>");
	handle.document.write("</head><body>");
	handle.document.write("<table cellpadding=0 cellspacing=0 border=0>");
	handle.document.write("<tr height=\"480px\"><td width=\"642px\" align=\"center\">");
	handle.document.write("<img src='../images/" + filename + "'></td></tr>");
	handle.document.write("<tr><td align=\"right\" style=\"font: 12px arial, san serif;\">");
	handle.document.write("<span style=\"cursor:hand;\" onClick=\"window.print();\">Print</span>");
	handle.document.write("<font color=red> | </font>");
	handle.document.write("<span style=\"cursor:hand;\" onClick=\"javascript:window.close();\">Close</span>");
	handle.document.write("</td></tr>");
	handle.document.write("</table>");
	handle.document.write("</body></html>");
	handle.document.close();
	handle.focus();
	return false;
}

/*****************************************************************************
** END OF FILE:	electronics.js
*****************************************************************************/
