var framesMissing=false;

if (top.frames.length == 0) {
    framesMissing=true;
}    

function fixFrames() {
    document.cookie = "newURL=" + escape(document.URL) + "; path=/;"
    ver = parseInt(navigator.appVersion, 10);
    if ( ((navigator.appName == "Netscape") && (ver >= 3)) ||
         ((navigator.appName == "Microsoft Internet Explorer") && (ver >= 4)) )
      location.replace("/frames.html");
    else
      location = "/frames.html";
}

function writeWarning() {
  if (framesMissing) {
    document.write(theWarning);
  }
  
}


var theWarning = '<p class=warn>This document is part of the <a href="/">SportsMind.com</a> website. It appears to be missing the navigation elements. <a href="javascript:fixFrames();">Click here</a> to view the entire page.</p>';
