var printHelper = 
{	
	src:'',
	show:function ()
	{
			var m = xGetElementById(document.UserMap.mapCanvas+"_MAPIMAGE");	
			
			this.src  = m.src;

			  var w = window.open( "print_map.html", null, "resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no;"); //"height="+(document.UserMap.height+200) +",width="+(document.UserMap.width+20) +",
                if (w)
                {
//                  w.document.open("text/html", "replace");
//                  w.document.write("<html><body><center>"+m.innerhtml+"</center></html></body>");
//                  w.document.close();                   
              	    w.focus();
                }
	},
	drawMap:function (el)
	{			
		el.firstChild.src = this.src;		
	},
	print:function(w)
	{
		var c = document.getElementById("comment");
		var text = document.getElementById("commentText").value;
		c.innerHTML = text;	
		window.print();
	}
};

