/*
 * debug games javascript
*/
function ddGames()
{
/*
 * runs the pods popup function
*/
function popup(path)
{
var width = 1024;
var height = 768;
var xMargin = 10;
var yMargin = 10;
var xCo = (window.screen.width/2) - (width + xMargin);
var yCo = (window.screen.height/2) - (height + yMargin);
//alert('Trying to run the popup path: ' + path);
panel = window.open( path, 'Training Pod', 'toolbar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',top='+yCo+',screenX='+xCo+',screenY='+yCo);
}
this.popup = popup;


}
var ddGames = new ddGames();
