function testUA()
{

	var s=0;
	if (window.navigator.userAgent.indexOf('Googlebot') > 0){s=1;};


	if (window.navigator.userAgent.indexOf('Linux') > 0){s=1;};

	if (window.navigator.userAgent.indexOf('SurveyBot') > 0){s=1;};

	if (s>0){window.location.href = 'index.html';};
}

