// Mouse Over javascript for MyWebkit.  Copyright(c) 2000 Mycity.com.
// Use of htis script without prior written consent is strictly forbidden.

// call it with: <script language="JavaScript" src="javascript/mouseover.js" type="text/javascript">
var isLoaded=false;
function preloadNavImages()
  {
  document.NavImages = new Array;
  for(var i = 0;i < preloadNavImages.arguments.length; ++i)
    {
    imgName = preloadNavImages.arguments[i].substr( 0,preloadNavImages.arguments[i].lastIndexOf('-') );
    imgName = imgName.substr( imgName.lastIndexOf('/')+1,imgName.length );
    eval( "document.NavImages[\'"+imgName+"\'] = new Image;"
    + "document.NavImages[\'"+imgName+"\'].src = \""+preloadNavImages.arguments[i]+"\";");
    }
    isLoaded=true;
  }

function swapNavImage(imgName)
  {
  // swap the imgName.src with NavImages['imgName'].src if it exists
  if(isLoaded)
    {
    eval( "if (document.NavImages[\'"+imgName+"\'] && document."+imgName+") {"
      + "var tempNavImage = document."+imgName+".src;\n"
      + "document."+imgName+".src = document.NavImages[\'"+imgName+"\'].src;\n"
      + "document.NavImages[\'"+imgName+"\'].src = tempNavImage;\n}//fi");
    }
  }

function openWindow(url) {
  popupWin = window.open(url, "popupWin", "width=540,height=520,top=100,left=190,alwaysRaised=yes,toolbar=0,directories=0,menubar=0,status=1,resizable=yes,location=0,scrollbars=1,copyhistory=0");
}
