////////////////////////////////////////////////
// patientdocs.js: General JavaScript functions used. //
////////////////////////////////////////////////
document.oncontextmenu = no_right_click;
var rcd = true;

function no_right_click() {
   if(rcd) {
      return false;
   }else{
      rcd = true;
   }
}

function popup(url){
   alert("test");
   window.open(url,'_blank','width=550,height=520,resizable=yes');   
}   

function get_directions() {
   to_adress = escape(driving_directions.to_address.value);
   to_city = escape(driving_directions.to_city.value);
   to_state = escape(driving_directions.to_state.value);
   to_zipcode = escape(driving_directions.to_zipcode.value);
   to_country = escape(driving_directions.to_country.value);
   
   from_address = escape(driving_directions.address.value);
   from_city = escape(driving_directions.city.value);
   from_state = escape(driving_directions.state.value);
   from_zipcode = escape(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');   
}