/*
    Simple JS file that helps to show a popup (iframe) window with all VIP games 
    Written by Mark Hinch for SEGA (August 2009)
*/

function showGames() {
    thePopupContainer = document.getElementById('vipgamespopupholder');
    vipGamesPopup = document.getElementById('vipgamespopup');

    vipGamesPopup.src = "../includes/vipgamespopup.php";
    thePopupContainer.style.display = "block";
    vipGamesPopup.focus();
    return false;
}

function hideGames() {
    thePopupContainer = document.getElementById('vipgamespopupholder');
    vipGamesPopup = document.getElementById('vipgamespopup');

    vipGamesPopup.src = "";
    thePopupContainer.style.display = "none";
    return false;
}
