<!--
// 
function click(e) {
      if (rgtcl!='X'){
          return true;
      }
      if (document.all) {
        if (event.button == 2) {
           alert('Come by and visit us today, or call 972-635-9919 to set up an appointment.');
           return false;
       }
     }
     if (document.layers) {
      if (e.which == 3) {
        return false;
      }
    }
  }
 if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN);
 }
 
 document.onmousedown=click;
 rgtcl='';
//--->