 //====================================================================================
//  Netscape 4.x bug fixes - DO NOT TOUCH
//====================================================================================
//------------------------------------------

// Resize fix - repositions DHTML menus
var winWidth;
var winHeight;

if (document.layers)
{  
  winWidth=window.innerWidth;
  winHeight=window.innerHeight;
  window.onResize=reloadIt;
}
function reloadIt() 
{
  if ((window.innerHeight!=winHeight)||(window.innerWidth!=winWidth)) document.location = document.location;
}

// Relatively positioned layers fix - prevents crashing when resizing browser
document.write('<LAYER NAME="NOTHING" VISIBILITY="HIDE" Z-INDEX="0" LEFT="0" TOP="0">\n');
document.write('</LAYER>');


//====================================================================================
//  Global variables
//====================================================================================
//------------------------------------------

//====================================================================================
// Table
//====================================================================================

var tablestart = '<TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100" BORDER="0" BGCOLOR="#FFFFFF">\n';
tablestart += '<TR>\n';
tablestart += '<TD VALIGN="top" BGCOLOR="#FFFFFF">\n';
tablestart += '<FONT FACE="arial,helvetica" SIZE="2">\n';

var tableend = '</FONT>\n';
tableend += '</TD>\n';
tableend += '</TR>\n';
tableend += '</TABLE>\n';

var replace_notcalled=1;

//------------------------------------------

//====================================================================================
// Swapped Texts
//====================================================================================

var content_home = tablestart;
content_home += '<DIV class="rollover">&nbsp;Our Main Page<BR></DIV>\n';
content_home += tableend;

var content_about = tablestart;
content_about += '<DIV class="rollover">Who We Are: Our &nbsp;People, Our Vision<BR></DIV>\n';
content_about += tableend;

var content_prod = tablestart;
content_prod += '<DIV class="rollover">Our Products<BR>& Services<BR></DIV>\n';
content_prod += tableend;

var content_tech = tablestart;
content_tech += '<DIV class="rollover">Web, Graphics, &amp; Software Tools<BR></DIV>\n';
content_tech += tableend;

var content_res = tablestart;
content_res += '<DIV class="rollover">Helpful Links<BR> &amp; More<BR></DIV>\n';
content_res += tableend;

var content_ref = tablestart;
content_ref += '<DIV class="rollover">Portfolio of Customer Sites<BR></DIV>\n';
content_ref += tableend;

var content_contact = tablestart;
content_contact += '<DIV class="rollover">Request Information or Ask Questions<BR></DIV>\n';
content_contact += tableend;

var timerID;

function swapLayer(master, name, mouse_is_on)
{
  if (mouse_is_on)
  {
    clearTimeout(timerID);
    turnOff(master, name);
    if (master.indexOf("none")==-1) showLayer(master, name);
    else absshowLayer(name);
    absshowLayer('menu_origb');
  }
  else
  {
    clearTimeout(timerID);
    timerID = setTimeout('turnOff("", "")', 1000);
    absshowLayer('menu_origb');
  }
}

function swapLayer2(master, name, mouse_is_on)
{
  if (mouse_is_on)
  {
    clearTimeout(timerID);
    turnOff2(master, name);
    absshowLayer(name);
    absshowLayer('menu_origb');
  }
  else
  {
    clearTimeout(timerID);
    timerID = setTimeout('turnOff2("", "")', 1000);
    absshowLayer('menu_origb');
  }
}

function mouseStatus(mouse_is_on)
{
  if (mouse_is_on)
  {
    clearTimeout(timerID);
  }
  else
  {
    clearTimeout(timerID);
    timerID = setTimeout('turnOff2("", "")', 1000);
  }
}

function turnOff(master, name)
{
}

function turnOff2(master, name)
{
}

function netReplace()
{

}


