<!-- INCLUDE THIS COMMENT TAG TO AVOID NETSCAPE 3 BUG 
function frameTest()
{
	//alert(document.referrer);
	if (document.referrer.indexOf('digg.com')>=0)
	{
		document.location="index.html";
	}

//	alert("test");
	// bail out frame
	//else 
	{
		if (top.location != location)
		{
			//alert("Frame not available");
			//top.location.href="blank.html";
			document.location="blank.html";
			document.location.href="blank.html";

		}	
		if (window!=top)
		{
			//alert("Frame not available");
			//top.location.href="blank.html";
			document.location="blank.html";
			document.location.href="blank.html";

		}
		if (self.parent.frames.length!=0)
		{
			//alert("Frame not available");
			//self.parent.location="blank.html"
			document.location="blank.html";
			document.location.href="blank.html";

		}
	}

	var rf=document.referrer;
	rf=rf.toLowerCase();
	var yes1=0;
	var yes2=0;
	var yes3=0;
	var yes4=0;

	for (var i=0; i<rf.length-2; i++)
	{
		if (rf.substring(i, i+2) == "or")
		{
			yes1=1;
		}
		if (rf.substring(i, i+2) == "to")
		{
			yes2=1;
		}
		if (rf.substring(i, i+2) == ".o")
		{
			yes3=1;
		}
		if (rf.substring(i, i+2) == "rm")
		{
			yes4=1;
		}
	}
	if (yes1==1 && yes2==1 && yes3==1 && yes4==1)
	{
		//alert("Not accessible");
		document.location="blank.html";
		document.location.href="blank.html";
	}
}
//-->