///////////////////////////////////////////////////////////////////////////////
// THESE ARE FOR ROLLOVERS											         //
///////////////////////////////////////////////////////////////////////////////

// This is for the rollovers for Rampant Zone internal pages.
if (document.images) {
  tbfest2002johnOn = new Image();
  tbfest2002johnOn.src = "/john/images/navbuttons/navbut_tbfest2002_john_over.gif";
  tbfest2002johnOff = new Image();
  tbfest2002johnOff.src = "/john/images/navbuttons/navbut_tbfest2002_john.gif";
  tbfest2007johnOn = new Image();
  tbfest2007johnOn.src = "/john/images/navbuttons/navbut_tbfest2007_john_over.gif";
  tbfest2007johnOff = new Image();
  tbfest2007johnOff.src = "/john/images/navbuttons/navbut_tbfest2007_john.gif";
}

function imgOn(imageName){
  if (document.images){
    document [imageName].src = eval(imageName + "On.src")
  }
}

function imgOff(imageName){
  if (document.images){
    document [imageName].src = eval(imageName + "Off.src")
  }
}

///////////////////////////////////////////////////////////////////////////////
// Window pop-up functions                                                   //
///////////////////////////////////////////////////////////////////////////////

// This is the popup window for the Links page button from links on the Blog pages.
function windowlinks()
{
  window.open('http://www.rampantzone.com/pages/links.html','links','width=588,height=400,menubar=yes,toolbar=no,location=no,scrollbars=yes,resizable=yes,status=yes,directories=no,top=10,left=10');
}


