
function PrintManager()
{var isSingleLocation=false;var singeLocationName=null;this.checkLeftNavPane=function()
{var paneNumber=ClientCache.Retrieve('selected_pane_num');if(paneNumber!=null){if(document.getElementById('header'+paneNumber).getAttribute('class')=='nestedAccordionHeaderSelected'){var searchType=ClientCache.Retrieve('pane_'+paneNumber+'_type');if(searchType=='dd'){window.open("DrivingDirectionsPrint.aspx?"+queryLang+"&waypoints="+waypointsArray.join("|")+"&style="+mapManager.Map.GetMapStyle()+"&traffic="+trafficEnabled,'_blank','height=800, width=810,resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes');}
else if(searchType=='fm'){var location=ClientCache.Retrieve('pane_'+paneNumber+'_Find');var name=location.split(';')[0];var VElatLon=location.split(';')[1];var latLon=VElatLon.split('(')[1];var lat=latLon.split(',')[0];var lon=latLon.split(',')[1];lon=lon.substr(0,(lon.length-1));window.open("FindMapPrint.aspx?"+queryLang+"&name="+name+"&lat="+lat+"&lon="+lon+"&zoom="+mapManager.Map.GetZoomLevel()+"&style="+mapManager.Map.GetMapStyle()+"&traffic="+trafficEnabled,'_blank','height=600, width=610,resizable=yes,scrollbars=no,menubar=yes,toolbar=yes');}
else if(searchType=='bus'){window.open("FindBusinessPrint.aspx?"+queryLang+"&qStringCache="+encodeURIComponent(ClientCache.Retrieve('pane_'+paneNumber+'_query'))+"&zoom="+mapManager.Map.GetZoomLevel()+"&style="+mapManager.Map.GetMapStyle()+"&keyword="+
document.getElementById('txtBusName').value+"&location="+document.getElementById('txtBusLocation').value+"&txtMode="+searchType+"&traffic="+trafficEnabled,'_blank','height=600, width=610,resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes');}
else{window.open("FindBusinessPrint.aspx?"+queryLang+"&qStringCache="+encodeURIComponent(ClientCache.Retrieve('pane_'+paneNumber+'_query'))+"&zoom="+mapManager.Map.GetZoomLevel()+"&style="+mapManager.Map.GetMapStyle()+"&keyword="+
document.getElementById('txtPersonName').value+"&location="+document.getElementById('txtPersonLocation').value+"&traffic="+trafficEnabled,'_blank','height=600, width=610,resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes');}}
else{window.open("DefaultPrintMap.aspx?"+queryLang+"&zoom="+mapManager.Map.GetZoomLevel()+"&style="+mapManager.Map.GetMapStyle()+"&traffic="+trafficEnabled+"&lat="+mapManager.Map.GetCenter().Latitude+"&lon="+mapManager.Map.GetCenter().Longitude,'_blank','height=600, width=610,resizable=yes,scrollbars=no,menubar=yes,toolbar=yes');}}
else{window.open("DefaultPrintMap.aspx?"+queryLang+"&zoom="+mapManager.Map.GetZoomLevel()+"&style="+mapManager.Map.GetMapStyle()+"&traffic="+trafficEnabled+"&lat="+mapManager.Map.GetCenter().Latitude+"&lon="+mapManager.Map.GetCenter().Longitude,'_blank','height=600, width=610,resizable=yes,scrollbars=no,menubar=yes,toolbar=yes');}}
this.setPrintPage=function(searchType,placeName)
{switch(searchType)
{case"singleLocation":isSingleLocation=true;singeLocationName=placeName;break;}}}