If this page loaded, then you originated from inside the Ochremedia domain. If you had not come from a page within the domain, the check would fail, and force a <META> refresh tag to be written into the header, re-directing you to the home page.

It was achieved using the following script in the header:
--------------------------------------
         Script by FS Thomas
         ochremedia -dot- com
--------------------------------------
<script type="text/javascript">
	var refer = document.referrer;
	
	if(!(refer=="") && refer.match("ochremedia")){
		document.write("<title>This is a TEST</title>");
	}else{
	document.write("<meta http-equiv='Refresh' content='0;url=http://www.ochremedia.com'>");
	};
</script>