// JavaScript Document

    function launchGame(id) {
      $('#popoverContent').load('ajax.html',{action:'viewGame',id:id}, function() { popoverActive(true); });
    }
    
    function launchCreator(id) {
      var url = "mashondc19.html?embed=comicbooks";
      if(id != undefined) {
        var url = url+"&id="+id; 
      }
      
      var width = 1020;
      var height = 700;
      window.open(url, 'comicCreator', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+',left = 365,top = 175');
    }
    
    function launchPlayer(id) {
      var url = "mashonb143.html?embed=player&amp;id=" + id;
      
      var width = 981;
      var height = 675;
      window.open(url, 'comicPlayeer', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+',left = 365,top = 175');
    }
    
    $(function() {
      if(false) { launchCreator(); }
      if(false) { launchPlayer(); }
    });
