// set this to 0 to switch this off.
var funtionality_is_enabled = 1;

function engine_match()
{
	if ( funtionality_is_enabled != 1 ) { return 0; }

	var engines = new Array(
		"google",
//		"yahoo",
//		"msn",
//		"looksmart",
//		"goeureka",
//		"search.bigpond",
//		"ninemsn",
//		"baidu",
//		"overture",
//		"lycos",
//		"gooru.pl",
//		"teoma",
//		"alltheweb",
		"aolsearch.aol.com",
		"search.aol.com"
//		"search.netscape.com",
//		"search.live.com",
//		"altavista",
//		"wisenut.com",
//		"dev.gumtree.com"
	);

    for (var i = 0; i < engines.length; i++)
    {
		if( document.referrer.length > 0 && document.referrer.indexOf( engines[i] ) != -1 )
		{
			return 1;
		}
    }

	return 0;
}

