function checklocal(route) {
/*
  Written by Joe McCormack.
  Used in body onload for the page fragment.  If the DIV named "skip" is not detected, the route url is loaded.
  Place the following in the parent window web page:
  <!-- Trace For Page Fragments -->
  <div id="tracer" name="tracer"></div>
*/
if (!parent.document.getElementById("tracer")) { location.href = route; }
}
