// Popup window code
	function newWindow(url, name, height, addScrollBars) {
		width = 800;
		leftPos = (screen.width) ? (screen.width-width)/2 : 0;
		topPos = (screen.height) ? (screen.height-height)/2 : 0;
		settings = "status=no,scrollbars=" + addScrollBars + ",width=" + width + ",height=" + height + "top=" + topPos + ",left=" + leftPos + ",resizable=yes"

		thePopup = window.open(url, name, settings);
	}



// Pop window for Bonus Game Added By Dean W. 12/17/08
function popUp(URLtoOpen, windowName, windowFeatures) {
     newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}


<!--



function image_swap(daImage, daSrc){
  var objStr,obj;

  if(document.images){
    // Check to see whether you are using a name, number, or object
    if (typeof(daImage) == 'string') {
      // This whole objStr nonesense is here solely to gain compatability
      // with ie3 for the mac.
      objStr = 'document.' + daImage;
      obj = eval(objStr);
      obj.src = daSrc;
    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {
      daImage.src = daSrc;
    }
  }
}


function resetAll() {

document.topPrize.src="images/topPrizes.gif";
document._5000_7499.src="images/5000_7499.gif";
document._2500_4999.src="images/3500-4999.gif";
document._1000_2499.src="images/1000-2499.gif";
document._100_999.src="images/100-999.gif";
document._99_less.src="images/99_less.gif";
document.forFun.src="images/forFun.gif";
document.allPrizes.src="images/allPrizes.gif";
	
}

// -->
