function newImage(arg) {
  if (document.images) {
    rslt = new Image();
    rslt.src = arg;
    return rslt;
  }
}

function r_on(i) {
  if (document.images) { 
    if (document[i].src.indexOf("down") < 0) {
      document[i].src = "../images/" + i + "_over.gif"; 
    }
  }
}

function r_off(i) {
  if (document.images) { 
    if (document[i].src.indexOf("down") < 0) {
      document[i].src = "../images/" + i + ".gif"; 
    }
  }
}


function poppup(page) {
  popUpWin = window.open(page,'PopWin','resizeable=no,scrollbars=yes,top=0,left=0,width=220,height=350');
}

function open_window(url){
  demo=window.open(url,"demo","width=500,height=400,toolbar=yes,directories=0,status=0,menubar=yes,resizable=yes,scrollbars=yes");
} 

function leaveSite3(site) {
  page = "jump.html?" + site;
  popUpWin = window.open(page,'PopWin','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,top=0,left=0,width=790,height=430');
}



