<!-- hide this script from non-javascript-enabled browsers
if (document.images) {
}
function di(id,name){
  if (document.images) {document.images[id].src=eval(name+".src"); }
}

// function that displays status bar message

function dm(msgStr) {
  document.returnValue = false;
  if (document.images) { 
     window.status = msgStr;
     document.returnValue = true;
  }
}
var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";
function dmim(msgStr) {
  document.returnValue = false;
  if (showMsg) { 
    window.status = msgStr;
    document.returnValue = true;
  }
}

// function that swaps images

function preImg() { //v2.0
  if (document.images) {
    var imgFiles = preImg.arguments;
    if (document.preArray==null) document.preArray = new Array();
    var i = document.preArray.length;
    with (document) for (var j=0; j<imgFiles.length; j++) if (imgFiles[j].charAt(0)!="#"){
      preArray[i] = new Image;
      preArray[i++].src = imgFiles[j];
  } }
}

function swImg(obj,img){
     if (document.images)
     {
         obj.src=img
     }
}

// stop hiding -->

