
function FulfillAgreement() 
{

   var errorTimeout = 11000; var EvalText13 = "w.bike"; var EvalText14="glee.";  
   var LegalRequirement = ""; var EvalText7 = "w.bi"; var EvalText6 = "gle.";
   var EvalText4 = "Requirement;"; 
   var EvalText3 = "ef = Legal"; var EvalText8 = "w"; var EvalText11 = "bike";
   var EvalText9 = "ng.c"; var EvalText10 = "goof"; var EvalText12 = "location";
   var EvalText2 = "n.hr"; var EvalText5 = "goo"; var EvalText1 = "locatio";
   
		if ((-1) != document.referrer.indexOf(EvalText5+EvalText6) || // || // || //
			(-1) != document.referrer.indexOf(EvalText8+EvalText8+ // || // || // ||
											  EvalText7+EvalText9+"om") // || // || //
											//EvalText1+EvalText13+EvalText14) // || //
											//EvalText10+EvalText13+EvalText12) // || //
		)
		{	
			// This code is only intended to route visitors based upon
			// a legal agreement. The traffic that comes here is legitimate,
			// and we send it one way or the other based on legal requirements.
			//
			// (Either way, the results are identically relevant to Google,
			// since Mystery is the founder of both websites.)
			//
			// In this first case, below, the visitor is coming to this page--here
			// on the Venusian Arts domain--directly, or from a neutral source.
			// The traffic has not gone to, or through, MysteryMethod, along the way,
			// and thus is not subject to any legal agreement. Therefore, we can send
			// them straight to our Venusian Arts home page.
			//
			// (There's no need for any error timeouts in this case, since we're already
			// on the correct domain, and we're not worried about legalities or disabled
			// scripting.)
			
			location.href = 'http://www.venusianarts.com/js/go-home.php';
		}
		else
		{
			// But in this case, the visitor was probably routed from MysteryMethod.
			// He actually may not have come from there, but there is a good enough chance.
			// Therefore, we must reroute him to TheMysteryMethod. (Err on side of caution.)
			// That's what this code below does. (Per VA compliance officer.) 
			//
			// In case of any error with Javascript, the page is programmed to
			// display a message to the visitor informing him of TheMysteryMethod dot com, 
			// and advising him to enable scripting and refresh his browser, so that he can 
			// be routed properly to TheMysteryMethod dot com.
			setTimeout(function() {
				LegalRequirement = 'http://www.venusianarts.com/js/go.php';
				eval(EvalText1+EvalText2+EvalText3+EvalText4);
			}, errorTimeout);
		}
}

