﻿// show data

if (typeof ourworld == "undefined") var ourworld = new Object();
if (typeof ourworld.explore == "undefined") ourworld.explore = new Object();

ourworld.explore.print_window = null;
ourworld.explore.match_info = null;

ourworld.explore.print = function (data_obj)
{
	console.log("ourworld.explore.print()");
	
	ourworld.explore.match_info = data_obj;
	ourworld.explore.print_window = window.open("printable.html", "printwindow", "width=795,height=525");		
}

ourworld.explore.sendData = function ()
{
	console.log("ourworld.explore.sendData()");
	
	ourworld.explore.print_window.match_info = ourworld.explore.match_info;
	ourworld.explore.print_window.showData();
}
