

  //alert(parent.disableBreakout);


  var breakOut = true;
  doc_ref = document.referrer;
  if (doc_ref == "") {breakOut = false};    
  doc_ref = doc_ref.substring(0, 21);
  //don't break out of frames if it's my website
  if (doc_ref == "http://www.elasmo.com") {breakOut = false};  
  //don't break out of frames if it's my website
  if (doc_ref == "http://jimbourdon.web") {breakOut = false};   
  //alert("doc_ref " + doc_ref + " BREAKOUT = " +  breakOut );
  //don't break out of frames if an authorized link
  //if (doc_ref == "http://www.westportwo") {breakOut = false}; 
  doc_ref = doc_ref.substring(0, 7);
  //don't break out of frames if desktop/local viewing
  if (doc_ref == "file://") {breakOut = false}; //Netscape 3.0
  if (doc_ref == "file:/D") {breakOut = false}; //Netscape 4.51-71
  if (doc_ref == "file:/C") {breakOut = false}; //Netscape 4.51-71
  if (doc_ref == "file:/E") {breakOut = false}; //Netscape 4.51-71  
//alert(doc_ref);

  if (parent.disableBreakout==true) breakOut = false;

  if (breakOut == true)
    { if (self != top) top.location.href = window.location.href; }


