function flashCheck()
{
    var player = new MM_FlashInfo();
	
    if (player.installed == null || (player.installed==false)) 
    {
        conf=confirm("In order to play casino games, your browser must have the Flash Player MX (6.0) or newer installed.Do you want to install now?");
        if (!conf) {
            window.location="/help/help.do";
        }
        
        else
        {
            
            var paramwindowother='toolbar=no,scrollbars=no,status=no,menubar=no,resizable=yes';
            newWindow=window.open('/game/updateFlash.do','FlashInstall',paramwindowother);
            newWindow.focus();
            
        }   
    }
    
    else if (player.installed)
    {
	    if (!player.canPlay("6.0", false))
        {
            conf=confirm("In order to play casino games, your browser must have the Flash Player MX (6.0) or new installed.Do you want to upgrade now?");
	        if (!conf)
	        {
	            window.location="/help/help.do";
	        }
            else
            {
            	
                var paramwindowother='toolbar=no,scrollbars=no,status=no,menubar=no,resizable=yes';
	            newWindow=window.open('/game/updateFlash.do','FlashUpgrade',paramwindowother);
	            newWindow.focus();
                
            }      
        }
    }
}  

flashCheck();

