﻿// display_maps

 
//---navigate to Virtual Earth
function goto_virtual_earth()
  {
  window.open('Virtual_Earth.aspx', 'CustomPopUp', 'width=1000, height=700, menubar=no, resizable=no');
  }
  
//---navigate to ESRI
function goto_esri()
  {
  window.open('Display_Map.aspx', 'CustomPopUp', 'width=1150, height=720, menubar=yes, resizable=no');
  }
  
//---navigate to Google
function goto_google_maps()
  {
  window.open('Google_Maps.aspx', 'CustomPopUp', 'width=1150, height=720, menubar=no, resizable=no');
  }  
  
function Show_Traffic()
  {
   map.LoadTraffic(true);
  }

function Hide_Traffic()
  {
   map.ClearTraffic();
  }  
 
