////////////////////////////////////////////////
// patientdocs.js: General JavaScript functions used. //
////////////////////////////////////////////////

function get_directions() {
   to_adress = escape(document.getElementById('driving_directions').to_address.value);
   to_city = escape(document.getElementById('driving_directions').to_city.value);
   to_state = escape(document.getElementById('driving_directions').to_state.value);
   to_zipcode = escape(document.getElementById('driving_directions').to_zipcode.value);
   to_country = escape(document.getElementById('driving_directions').to_country.value);
   
   from_address = escape(document.getElementById('driving_directions').address.value);
   from_city = escape(document.getElementById('driving_directions').city.value);
   from_state = escape(document.getElementById('driving_directions').state.value);
   from_zipcode = escape(document.getElementById('driving_directions').zipcode.value);
   from_country = escape("US");
   url = 'http://www.mapquest.com/directions/main.adp?go=1&1a=' + from_address + '&1c=' + from_city + '&1s=' + from_state + '&1z=' + from_zipcode + '&1y=' + from_country + '&do=nw&lex=1&2ex=1&src=maps&ct=NA&2a=' + to_adress + '&2c=' + to_city + '&2s=' + to_state + '&2z=' + to_zipcode + '&2y=' + to_country + '&2pn=&21=%2fIVRiebGKqw%3d&2g=UYStbb1SEeI%3d&2v=ADRESS&2pl=';
   window.open(url,'_blank');   
}

function print_certificate() {
   window.print();
   window.close();
}