var currentObj;

function swap(obj, state) {
  if (state != "") {
    if (state == 2) {
      obj.src = "../images/menu/" + obj.name + "_o.gif";
    } else if (state == 1) {
      obj.src = "../images/menu/" + obj.name + ".gif";
    }
    if (currentObj != null) {
      currentObj.src = "../mages/menu/" + currentObj.name + "_o.gif";
    }
  }
}


function popUp(theURL,winName,features) { //v2.0
  afb = window.open(theURL,winName,features);
}
