document.domain = "blackjack21.com";
var currentMultiIndex=0;
var interval;

var winRef; 							
var str = "status=no,scrollbars=auto,left=15,screenX=15,top=15,screen15=5";
if(window.screen) {
	var ah = 620; //screen.availHeight - 340; // 30
	var aw = 800; //screen.availWidth - 450; // 10
	str += ",height=" + ah;
	str += ",innerHeight=" + ah; 
	str += ",width=" + aw;
	str += ",innerWidth=" + aw;
}
else {
	str += ",resizable";
}

// Shows up the flash window
function playFlash() {
	if ( winRef == null || winRef.closed){
				winRef = window.open("https://www.blackjack21.com/members/play.php?p=AgkVKwIdDQZcE0BaAhYWBj4bDV5HQENTEQESGQRPTxMARkNBDB0XSUcGAA4ERkRXDh9ORVNAXlBTDAQDVw==", "winRef", str);
		if(winRef==null){
			document.location.href='/members/popup_blocker.php';	
		}
 	}
	else{
		winRef.focus();
	}
}

// Closes up the flash window and logout the user
function logout() {
	if ( winRef == null || winRef.closed) {}
	else {
		winRef.close();
	}
	top.location.href='https://www.blackjack21.com/logout.php';
}