
function check_browser()
{
	var ua = $.browser;

	if (ua.webkit || ua.safari)
	{
		return;
	}
	else if (navigator.userAgent.toLowerCase().indexOf('camino') >= 0)
	{
		// nothing
	}
	else if (ua.mozilla)
	{	
		if (navigator.userAgent.toLowerCase().indexOf('firefox') != -1) return;
	}
	else if (ua.msie)
	{
		if ( parseInt(ua.version) >= 7) return;
	}

	document.location.href = '/?a=notsupported';
}
	
check_browser();

