// Created on 1/20/2007 by Damon Pettitt to establish functions that can be used 
// to link the GIS-Web to other online applications while "hiding" the link that 
// would otherwise appear in the browser's status bar.

function GoogleMaps(PropStreet) {
   window.open('http://maps.google.com/maps?f=q&hl=en&q=' + PropStreet + '&z=17')
}

function MapQuest(PropStreet) {
   window.open('http://mapquest.com/maps/map.adp/?address=' + PropStreet)
}

function BingMaps(PropStreet) {
   window.open('http://www.bing.com/maps/?v=2&where1=' + PropStreet)
}