function check_browser()
{
if (document.getElementsByTagName)
	{
	var a = document.getElementsByTagName("TD")
	for (var b=0;b<a.length;b++)
		{
		if (a[b].className=="hdr")
			{
			a[b].onmouseover 	= function(){this.className="hover";this.style.cursor="hand"}
			a[b].onmouseout  	= function(){this.className="hdr"}
			a[b].onclick  		= function(){num=this.id.replace(/l/,'');u=eval('document.getElementById("u'+num+'")');location.href=u.href}
			}
		}
	}
else 
	{location.href="old_browser.asp"}
}