
function PrintableMap() {
  OpenPrintWindow(_printUrl);
}

function PrintableInfo(infoType)
{
  OpenPrintWindow(_infoUrl + "&type=" + infoType);
}

function OpenPrintWindow(url) {
  var windowFeatures = "menubar=yes,status=no,scrollbars=yes,toolbar=yes,resizable=yes,screenY=0,width=700,height=900";
  window.open(url, "", windowFeatures);
}