
// Keep home page from loading in a frame
if(top.frames.length !=0) { top.location = document.URL; }
// 

//
    message     = "Welcome to  DrBackman.com Chiropractic....Easy New Muscle Stretching.^" +
                         "Thank You For Helping Your Friends , Family and Colleagues by Referring them to  Dr. Lawrence Dieter .^"  +
                "The Internet Should Never Be A Substitute For An In-Person Consultation With A Licensed Professional.^"  +
                "If You Do Not Receive a Reply to Your Email  Within 12Hrs, Please Call the 800#, usa-pst.^"  +
                "Personal Chiropractic Care for Families----Young and Mature, Athletes, Sports Injuries, Auto Accidents.^"  +
"^"
  scrollSpeed = 30
  lineDelay   = 1500
  txt         = ""
  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }
  // Unhide 
scrollText(0)
  //  
  
  //
crosoft = false;
scape = false;
if (navigator.appName.indexOf("Microsoft")  != -1) crosoft = true;
if (navigator.appName.indexOf("Netscape")  != -1) scape = true;
if (scape)
{ captureEvents (Event.MOUSEDOWN);
  onMouseDown = capturer;
}
if (crosoft)
{ document.onmousedown = intercepter;
}
function capturer (e)
{ if (e.which == 3)
  { alert("copy of photo not allowed");
    return false;
  }
}
function intercepter()
{ if (event.button == 2 )
  alert("copy of photo not allowed");
}