/**
 * Scale interface elements to full screen.
 */
function layoutResize () {
	try {
		var bodyHeight = document.body.clientHeight;
		if ($('content').getHeight() < bodyHeight) {
			$('blackout').style.height = bodyHeight - $('content').getHeight() + 'px';
			$('content').style.height = bodyHeight + 'px';
		}
	}
	
	catch (e) {
	}
}

Event.onDOMReady (layoutResize);
Event.observe (window, 'resize', layoutResize);

function cashierOpen () {
	window.open('/cashier/open', 'cashier', 'toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=0,width=800,height=600,left=100,top=100');
}

function chatOpen (login) {
	window.open ('https://server.iad.liveperson.net/hc/58353834/?cmd=file&file=visitorWantsToChat&site=58353834&byhref=1&SESSIONVAR!visitor_profile=Cherry%20Red&SESSIONVAR!skill=Cherry%20Red%20CS&SESSIONVAR!casinoTitle=Cherry%20Red%20Casino&SESSIONVAR!casinoId=1&SESSIONVAR!skinId=1&SESSIONVAR!identifier='+login+'&SESSIONVAR!survey_pre-chat_enable=off&SESSIONVAR!eventType=PlayerRequest&SESSIONVAR!source=Cashier&SESSIONVAR!mode=real&SESSIONVAR!game=&SESSIONVAR!subGame=&SESSIONVAR!gameID=&SESSIONVAR!subGameID=&SESSIONVAR!reason=&SESSIONVAR!skill=&SESSIONVAR!operator=', '', 'scrollbars=no,width=475,height=400, resizable=yes');
}

function setDivHeight(h) {
	if (h < 232) {
		h = 232;
	}
	
	var div = document.getElementById("whymenu");
	div.style.height = h+"px";
}
