var BROWSERTYPE=navigator.appName;
var bolIE = true;
var counter = 1; 

if (BROWSERTYPE == 'Netscape'){
	bolIE = false;
}


function display_header()
{
	document.write("<DIV ALIGN=CENTER>\n");
	document.write("<TABLE CLASS=WIDTH800HEADER BORDER=0>\n");
	document.write("<TR>\n");
	document.write("<TD><DIV ALIGN=LEFT><IMG SRC=\"./images/MM-42WEB30FLIP.jpg\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</DIV></TD>\n");
	document.write("<TD CLASS=HEADER><DIV ALIGN=CENTER><BR><IMG SRC=\"./images/logometallicRE38.jpg\"></DIV></TD>\n");
	document.write("<TD><DIV ALIGN=RIGHT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<IMG SRC=\"./images/Trucking-5WEB50.jpg\"></DIV></TD>");
	document.write("</TR>");
	document.write("</TABLE>");
	document.write("</DIV>");
}


function set_visible(CHOSENSECTION)
{
	if (bolIE){
		document.all[CHOSENSECTION].style.zIndex = 3;
	}else{
		document.LBLANK.visibility = 'hidden';
		document.LHOME.visibility = 'hidden';
		document.LSERVICES.visibility = 'hidden';
		document.LPARTS.visibility = 'hidden';
		document.EQUIPMENT.visibility = 'hidden';
		document.LABOUTUS.visibility = 'hidden';
		document.LCONTACT.visibility = 'hidden';
		document.LCAREER.visibility = 'hidden'; 
		switch (CHOSENSECTION){
			case 'LHOME':
				document.LHOME.visibility = 'visible';
				break;
			case 'LSERVICES':
				document.LSERVICES.visibility = 'visible';
				break;
			case 'LPARTS':
				document.LPARTS.visibility = 'visible';
				break;
			case 'EQUIPMENT':
				document.EQUIPMENT.visibility = 'visible';
				break;
			case 'LABOUTUS':
				document.LABOUTUS.visibility = 'visible';
				break;
			case 'LCONTACT':
				document.LCONTACT.visibility = 'visible';
				break;
			case 'LCAREER': 
				document.LCAREER.visibility = 'visible'; 
				break; 
			default:
				document.LBLANK.visibility = 'visible';
		}
	}
}

function set_hidden(CHOSENSECTION)
{
	if (bolIE){
		document.all[CHOSENSECTION].style.zIndex = 1;
	}else{
		document.LBLANK.visibility = 'visible';
		document.LHOME.visibility = 'hidden';
		document.LSERVICES.visibility = 'hidden';
		document.LPARTS.visibility = 'hidden';
		document.EQUIPMENT.visibility = 'hidden';
		document.LABOUTUS.visibility = 'hidden';
		document.LCONTACT.visibility = 'hidden';
		document.LCAREER.visibility = 'hidden';
	}
}

function display_menu(CURRENTSECTION)
{

	document.write("<TABLE");
	if (screen.width > 825){
		document.write(" WIDTH=100% ");
	}else{
		document.write(" CLASS=WIDTH825 WIDTH=825 ");
	}
	document.write("CELLSPACING=0 CELLPADDING=0 BORDER=0>\n");
	document.write("<TR>\n");
	document.write("<TD CLASS=MENU BACKGROUND='./images/dbar050.jpg' height=30>");
	document.write("<CENTER><B><NOBR>");

	document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");

	document.write("<A HREF='./index.php' onMouseOver='set_visible(\"LHOME\");' onMouseOut='set_hidden(\"LHOME\");'>");
	if (CURRENTSECTION=="HOME"){
		document.write("<FONT COLOR=RED>HOME</FONT>");
	}else{
		document.write("HOME");
	}
	document.write("</A>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;");

	document.write("<A HREF='./services.php' onMouseOver='set_visible(\"LSERVICES\");' onMouseOut='set_hidden(\"LSERVICES\");'>");
	if ((CURRENTSECTION=="SERVICES")||(CURRENTSECTION=="SPECIALIZED EQUIPMENT")){
		document.write("<FONT COLOR=RED>SERVICES</FONT>");
	}else{
		document.write("SERVICES");
	}
	document.write("</A>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;");

        document.write("<A HREF='./parts.php' onMouseOver='set_visible(\"LPARTS\");' onMouseOut='set_hidden(\"LPARTS\");'>");
        if (CURRENTSECTION=="PARTS"){
                document.write("<FONT COLOR=RED>PARTS</FONT>");
        }else{
                document.write("PARTS");
        }
        document.write("</A>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;");


	document.write("<A HREF='./equipment-list.php' onMouseOver='set_visible(\"EQUIPMENT\");' onMouseOut='set_hidden(\"EQUIPMENT\");'>");
	if (CURRENTSECTION=="EQUIPMENT"){
		document.write("<FONT COLOR=RED>EQUIPMENT</FONT>");
	}else{
		document.write("EQUIPMENT");
	}
	document.write("</A>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;");

	document.write("<A HREF='./contact.php' onMouseOver='set_visible(\"LCONTACT\");' onMouseOut='set_hidden(\"LCONTACT\");'>");
	if (CURRENTSECTION=="CONTACT"){
		document.write("<FONT COLOR=RED>CONTACT</FONT>");
	}else{
		document.write("CONTACT");
	}
	 document.write("</A>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;");
	
	document.write("<A HREF='./careers.php' onMouseOver='set_visible(\"LCAREER\");' onMouseOut='set_hidden(\"LCAREER\");'>");
	if (CURRENTSECTION=="CAREER"){
		document.write("<FONT COLOR=RED>CAREERS</FONT>");
	}else{
		document.write("CAREERS");
	}

	document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");

	document.write("</NOBR></B></CENTER>");
	document.write("</TD></TR></TABLE>");
}

function orderIt(info)
{
   if (info==document.grid.sortby.value) 
     {
       if (document.grid.sortorder.value=="ASC")
          {
           document.grid.sortorder.value="DESC"
          }
       else
          {
          document.grid.sortorder.value="ASC"
          }
     }
     else
     {
     document.grid.sortorder.value="ASC"
     }
    document.grid.sortby.value=info;
    document.grid.submit();
}


function addSearch(divName){
 var newdiv = document.createElement('div'); 
	newdiv.innerHTML = "<tr><td width='310' align='center'><input type='text' size='40' name='Search[]'></td></tr><p>\n"; 
	document.getElementById(divName).appendChild(newdiv); 
	counter++; 
}

