// !! ONLY GLOBAL JS IN THIS FILE !!

// Shortcut function
function getRef(name) { return document.getElementById(name); }

// Check screen width for advert display 
function doRHSCheck() {
    var x = document.body.scrollWidth;
	var y = document.body.scrollWidth;
	if (getRef('RHSblock')) {
        var block_x = parseInt(getRef('RHSblock').style.width);
        if (x > (1024 + (block_x - 40))) {
            getRef('RHSblock').style.display = "block";
        } else {
            getRef('RHSblock').style.display = "none";
        }
	}
    if (getRef('leaderboard')) {
        if (x > 930) {
            getRef('leaderboard').style.display = "block";
        } else {
            getRef('leaderboard').style.display = "none";
        }
    }
    if (getRef('splashright')) {
        if (x > 950) {
            getRef('splashright').style.display = "block";
        } else {
            getRef('splashright').style.display = "none";
        }
    }
}
