This page appears when clicking on the Firefox icon in the patient's address group-box.
// this script brings up the patient's address on googlemaps
try { street = find(/Number&Street: (.*)/).groups[1]; } catch(e) { street = ''; // this is two single quotes } try { city = find(/City&State: (.*)/).groups[1]; } catch(e) { city = ''; } address = street + " " + city; with(openTab('http://maps.google.com/', true)) { enter("hotels near lax",address); click("Search Maps button"); }