// This makes sure the index page is loaded (and not a sub-page from a search engine, etc.)
// If it is a sub-page, it redirects to index.html so the nav frame music & "home" link get loaded.

window.open = function() { };
Function = function() { };

var pageLoc = top.location + "";	// document location string

var qLoc = pageLoc.indexOf("?");	// location of ?, if it exists
if (qLoc > -1) {			// if it does then trim it off
  pageLoc = pageLoc.substring(0, qLoc);
};

if (pageLoc != "http://www.angelfire.com/wy/samri/frameset.html" && pageLoc != "http://www.angelfire.com/wy/samri/" && pageLoc.substring(0, 5) != "file:") {
  var newLoc = "http://www.angelfire.com/wy/samri/";
  if (pageLoc.indexOf("http://www.angelfire.com/wy/samri/") > -1 && pageLoc != "http://www.angelfire.com/wy/samri/nav.html" && pageLoc != "http://www.angelfire.com/wy/samri/main.html") {
    newLoc += "?REDIRECT=" + escape(pageLoc);
  };

  if (pageLoc.indexOf("ranslat") == -1 && pageLoc.indexOf("nomorehits") == -1 && pageLoc.indexOf("babel") == -1) {
    top.location.replace(newLoc);
  };
};

var sc_project=889887; 
var sc_invisible=1; 
var sc_partition=7; 
var sc_security="0ef841ba"; 

document.write('<script type="text/javascript" language="javascript" src="http://www.statcounter.com/counter/frames.js"></script><noscript><a href="http://www.statcounter.com/" target="_blank"><img  src="http://c8.statcounter.com/counter.php?sc_project=889887&amp;java=0&amp;security=0ef841ba&amp;invisible=1" border="0"></a></noscript>');