function check_browser()
{
if (document.getElementsByTagName)
	{
	var a = document.getElementsByTagName("IMG")
	for (var b=0;b<a.length;b++)
		{
		if (a[b].className=="buy")
			{
			a[b].onmouseover 	= function(){if(window.innerWidth){this.style.cursor="pointer"}else{this.style.cursor="hand"}}
			a[b].onmouseout  	= function(){this.style.cursor=""}
			a[b].onclick  		= function()
					{
					z=this.id.charAt(0);if (z=="b"){num=this.id.replace(/b/,'');location.href='http://www.beebeard.com/buy.asp?i='+num}
					}
			}
		}
	var a = document.getElementsByTagName("TD")
	for (var b=0;b<a.length;b++)
		{
		if (a[b].className=="hdr")
			{
			a[b].onmouseover 	= function(){so();this.className="hover";this.style.cursor='hand'}
			a[b].onmouseout  	= function(){sa();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"}
}

function check_search()
{
	mt=false
	if(document.findit.searchfor.value=="" && mt==false){alert('You must enter some search text');mt=true}
	if(mt==false){document.findit.submit()}	
} 