<!-- Hide javascript

// Redirect external access to main page. Method 1.
// Works with Navigator and Explorer!

	if(parent.frames.length==0){

// If already in a frame don't confuse things!

	last=document.referrer.lastIndexOf("/");
	var source=document.referrer.substring(0,last);

	last=location.href.lastIndexOf("/");
	var current=location.href.substring(0,last);

// Compare the path of the referrer with current location. 
// If they are different redirect to index page.

	if(source!=current && source!=""){
	window.location.href="http://gscm.missouri.org/index.html";
	}
	}

// come out of hiding -->
