function formHandler(form) {
	var URL = document.form.site.options[document.form.site.selectedIndex].value;
	window.location.href = URL;
	}

startList = function() 
{
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("topnav");
		for (i=0; i<navRoot.childNodes.length; i++) 
		{	
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					this.className+=" over";
				}
				node.onmouseout=function() 
			{
			this.className=this.className.replace(" over", "");
		}
	}
}

		
function loadList()
{
	/* Special cases dropdown	*/
	var selSpecial = document.getElementById("selSpecial");
	var arrList = 
		new Array(
			new Array("papermills", "Paper Mills"),
			new Array("food", "Food"),
			new Array("paint", "Paint"),			
			new Array("printing", "Printing"),
			new Array("steel", "Steel"),			
			new Array("toolbox", "Tool Box Manufacturer"),
			new Array("horticultural", "Horticultural"),
			new Array("textile", "Textile"),
			new Array("auto", "Automotive"),
			new Array("industrial", "Industrial Materials"),
			new Array("constmaterial", "Construction Materials"),
			new Array("beverages", "Beverages"),
			new Array("construction", "Construction"),
			new Array("paper", "Paper"),						
			new Array("all", "All industries"),
			new Array("blocks", "Blocks, Bricks & Mulch"),
			new Array("electrical", "Electricals"),
			new Array("hardgoods", "Cons. Hard Goods"),
			new Array("pharma", "Pharmaceutical"),
			new Array("dist", "Distribution Center"),
			new Array("packaging", "Packaging")
		);		
	for (var i = 0; i < arrList.length; i++) 
	{
		selSpecial.options[i] = new Option(arrList[i][1],"/industry/" + arrList[i][0] + ".html");
	}
}
	

		lunch_javascript = function (){
		loadList();
		startList();
		}

function newWindow(options, hauteur) {
	optWindow = window.open(options,"optWin", "width=860,height="+hauteur+",location=no,menubar=0,resizable=0,scrollbars=0,status=no,titlebar=0,toolbar=0,left=300,top=300")
	optWindow.focus()
}

