<!--

/*
 Flipping the Images with Javascript (Rollover Code)
 */
 
function newWindow(page) {
	window.open(page,"bored_window","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=528,height=394,top=50,left=50");
}
 
 function whatBrowser() {
 appname= navigator.appName;
 appversion = navigator.appVersion;
 majorver = appversion.substring(0, 1);
 if ( (appname == "Netscape") && ( majorver >= 3 ) ) return 1;
 if ( (appname == "Microsoft Internet Explorer") && (majorver >= 4) ) return 1;
  return 0;
}

function flip(num, imgname) {
  if (whatBrowser()) {
 document[imgname].src = img[num].src;
}
}

imgsrc = new Array();
imgsrc[0] = "images/enterSite_Off.gif";
imgsrc[1] = "images/enterSite_On.gif";


if (whatBrowser()) {
  img = new Array();
  for (i = 0; i < imgsrc.length; i++) {
 img[i] = new Image();
 img[i].src = imgsrc[i];
  }
}

// -->