function DoPopup()
{

	var thereferrer = document.referrer

	if (thereferrer!="")
	{
		var first_split = thereferrer.split("//");
		var without_resource = first_split[1];
		var second_split = without_resource.split("/");
		var third_split = second_split[0].split(".");
		var mydomain = third_split[1];
		if (mydomain == "google")
		{
			var Url = "http://www.greedyhog-gambling.com/tropezpop.html";
			var WindowWidth = 600;
			var WindowHeight = 360;
			var WindowTop = (screen.availHeight/2) - (WindowHeight/2);
			var WindowLeft = (screen.availWidth/2) - (WindowWidth/2);
			var WindowProps = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=no,width='+WindowWidth+',height='+WindowHeight+',left='+WindowLeft+',top='+WindowTop+',screenx='+WindowLeft+',screeny='+WindowTop;
       			window.open(Url,"ConsoleWindow",WindowProps);
		}
	}
}
