function checkHim()
{  
	var goAway = false;
	var goFoster = false;
	var goRude = false;
	var httpRefer = document.referrer;

	if (httpRefer.indexOf("drglavas.com") != -1)
	{
		goAway = true;
	}

	if (httpRefer.indexOf("albergerdds.com") != -1)
	{
		goAway = true;
	}
	
	if (httpRefer.indexOf("drpannullo.com") != -1)
	{
		goAway = true;
	}

	if (httpRefer.indexOf("drpaolino.com") != -1)
	{
		goAway = true;
	}
	
	if (httpRefer.indexOf("aydera.com") != -1)
	{
		goAway = true;
		goFoster = true;
	}
	
	if (httpRefer.indexOf("rootcanaldoc.com") != -1)
	{
		goAway = true;
		goFoster = false;
	}
	
	if (httpRefer.indexOf("smilenorwalk.com") != -1)
	{
		goAway = true;
		goFoster = true;
	}

	if (httpRefer.indexOf("drblumoralsurg.com") != -1)
	{
		goAway = true;
		goFoster = false;
	}


	if (httpRefer.indexOf("northshoreprosthodontics.com") != -1)
	{
		goAway = true;
		goFoster = false;
	}
	
	if (httpRefer.indexOf("northshoreprosthodontics.com") != -1)
	{
		goAway = true;
		goRude = true;
	}
	
	
	
	if (goAway == true)
	{
		alert("You have followed an illegal link to PBHS content.\n\nYou will be returned to the link that brought you here.");
					
		if((goFoster != true) && (goRude != true))
		{
			window.location = httpRefer;
		}
		
		if(goFoster == true)
		{
			window.location = "http://www.fosterfarms.com/index.asp";
		}
		
		if(goRude == true)
		{
			window.location = "http://www.bigdummys.com/bandwidth_theft.htm";
		}
	}
}