<!--
function mmLoadMenus() {
  if (window.mm_menu_0926132016_0) return;
  window.mm_menu_0926132016_0 = new Menu("root",200,22,"Arial, Helvetica, sans-serif",12,"#FFFFFF","#FFFFFF","#141F3D","#611600","left","middle",10,0,1000,-5,7,true,true,true,0,true,true);
  mm_menu_0926132016_0.addMenuItem("WELDING","location='welding.htm'");
  mm_menu_0926132016_0.addMenuItem("ASSEMBLY","location='assembly.htm'");
  mm_menu_0926132016_0.addMenuItem("LEAK TESTING","location='leaktesting.htm'");
  mm_menu_0926132016_0.addMenuItem("PRESS","location='press.htm'");
  mm_menu_0926132016_0.addMenuItem("INSPECTION: GAGES / VISION","location='inspection.htm'");
  mm_menu_0926132016_0.addMenuItem("EXTRUSION LINE","location='extrusion.htm'");
  mm_menu_0926132016_0.addMenuItem("SPECIAL MACHINERY","location='machinery.htm'");
  mm_menu_0926132016_0.addMenuItem("ROBOTICS","location='robotics.htm'");
  mm_menu_0926132016_0.addMenuItem("MACHINING / DRILLING","location='drilling.htm'");
  mm_menu_0926132016_0.addMenuItem("TOOLING / FIXTURING","location='tooling.htm'");
   mm_menu_0926132016_0.hideOnMouseOut=true;
   mm_menu_0926132016_0.bgColor='#1C69B7';
   mm_menu_0926132016_0.menuBorder=0;
   mm_menu_0926132016_0.menuLiteBgColor='#1C69B7';
   mm_menu_0926132016_0.menuBorderBgColor='#1C69B7';

mm_menu_0926132016_0.writeMenus();
} // mmLoadMenus()
//-->

function holdlink(id1,id2) {		
	if (id1=='equipment') {
		document.getElementById(id1).className='navigation_hover';
		document.getElementById(id1).onmouseout='navigation_hover';
		document.getElementById(id2).className='elist_hover';
		document.getElementById(id2).onmouseout='elist_hover';
		document.getElementById('printimg').style.display='';
		document.getElementById(id2+'_header').style.display='';
		document.getElementById('tblSend').style.display='';
	}
	else
		holdlink1(id1);
}
	
function holdlink1(id1) {
	document.getElementById(id1).className='navigation_hover';
	document.getElementById(id1).onmouseout='navigation_hover';
	document.getElementById(id1+'_header').style.display='';
}

function quote()
{
	var NewWin;
	NewWin1=window.open("request_quote.htm",'NewWin2','height=565,width=420,top=20,left=50,location=no,status=no,toolbar=no,menubar=no,scrollbars=no');
	NewWin1.focus();

}

function send()
{
	var NewWin;
	NewWin1=window.open("send.htm",'NewWin2','height=395,width=420,top=20,left=50,location=no,status=no,toolbar=no,menubar=no,scrollbars=no');
	NewWin1.focus();

}

function gallery (path){
		var popupwindow = window.open("equipment/"+path+".htm",'NewWin1','HEIGHT=575,WIDTH=650,left=50,top=40,toolbar=no,scrollbars=no,resizable=no,menubar=no,status=no,directories=no,location=no,titlebar=no');
		popupwindow.focus();
}
	
/*Includes*/

function include_file(id, url) {
	
  var req = false;
  // For Safari, Firefox, and other non-MS browsers
  if (window.XMLHttpRequest) {
    try {
      req = new XMLHttpRequest();
    } catch (e) {
      req = false;
    }
  } else if (window.ActiveXObject) {
    // For Internet Explorer on Windows
    try {
      req = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        req = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (e) {
        req = false;
      }
    }
  }
 var element = document.getElementById(id);
  if (req) {
    // Synchronous request, wait till we have it all
	req.open('GET', url, false);
    req.send(null);
    element.innerHTML = req.responseText;
  } 
}


function trim(inputString) 
{
   if (typeof inputString != "string") { return inputString; }
   var retValue = inputString;
   var ch = retValue.substring(0, 1);
   
   while (ch == " ") { 
      retValue = retValue.substring(1, retValue.length);
      ch = retValue.substring(0, 1);
   }
   
   ch = retValue.substring(retValue.length-1, retValue.length);
   while (ch == " ") { 
      retValue = retValue.substring(0, retValue.length-1);
      ch = retValue.substring(retValue.length-1, retValue.length);
   }
   while (retValue.indexOf("  ") != -1) { 
      retValue = retValue.substring(0, retValue.indexOf("  ")) + retValue.substring(retValue.indexOf("  ")+1, retValue.length); 
   }
   return retValue;
}
//
