var ns = (document.layers)? true:false;
var ie = (document.all)? true:false;
if (ns) document.captureEvents(Event.MOUSEDOWN || Event.CLICK);
document.onclick = sourcecodeprotect;
document.onmousedown = sourcecodeprotect;

// ***********************************************************
function sourcecodeprotect(e) {
  if (ns&&(e.which==3)) return false;
  else if (ie&&(window.event.button==2)) alert("For the finest In-Home Care Services in Southern California, Please be sure to visit our sister sites in the surrounding areas:\n\n             www.LAinHomeCareService.com\n             www.PasadenaInHomeCare.com\n             www.A-1HomeCare.com\n             www.SealBeachInHomeCare.com\n             www.DowneyInHomeCare.com\n             www.WhittierInHomeCare.com\n\nContents & Graphics Copyright © 2012\nA-1 Domestic Professional Services, Inc.\nA-1 Home Care Agency");
  else return true;
  }

//***********************************************************
function cleanup() {
  if (ns) document.releaseEvents(Event.MOUSEDOWN || Event.CLICK);
  }
