var myFlash;

window.onload = function() {
    
    myFlash = document.getElementById("openthegames");
    
}

function playSnowBallFight(){
    
    myFlash.playSnowBallFromJs();
    
}

function closeUnityGame(){
    
    myFlash.closeUnityGame();
    
}

function redirectMe(type, loc){
    
    switch(type){
        
        case 'login':
        
            login_frame.document.location = "https://secure.vancouver2010.coke.com/common/content/opensnow/loginFrame.aspx?target="+loc;
        
        break;
        
        case 'navigate':
            
            navigate_frame.document.location = "https://secure.vancouver2010.coke.com/common/content/opensnow/navigateframe.aspx?target="+loc;
        
        break;
        
    }
     
}