// Generic pop-up window function

function openBrWindow(theurl, winname, features){



		window.open(theurl, winname, features);

	}

function jump(sLink, sWidth, sHeight) {

  window.open(sLink, "_games", "height=" + sHeight + ",width=" + sWidth + ",resizable=no");

}
function setTabOn(tb) {

		a = document.getElementById(tb);

		if (a) {

			a.setAttribute("onmouseout","");

			a.setAttribute("onmouseover","");

		}

		dispTab(tb, 'show');

	}



  	//Rollover function for Tabs

	function dispTab(tb, st) {

		i = document.getElementById(tb+"_off");

		if (i) {

			if (st == 'show') {

				i.src=i.src.replace("_off.","_on.");

			} else {

				i.src=i.src.replace("_on.","_off.");

			}

		}

	}
function checkTab() {

	var siteUrl = location.pathname;

	

	

		setTabOn('casino')

}
 










