function check_browser()
{
if (document.getElementsByTagName)
	{
	if (document.getElementsByTagName)
		{
		var middle	= document.getElementById("middle")
		var	menu 	= document.getElementById("menu")
		var	rmenu 	= document.getElementById("rmenu")
		
		//Resize
		a=middle.scrollHeight
		b=menu.scrollHeight
		c=rmenu.scrollHeight
		
		if (a<b || a<c)
			{if (b<c){h=c}else{h=b}}
		else
			{h=a}
			
		menu.style.height=h+"px";middle.style.height=h+"px";rmenu.style.height=h+24+"px"
		
		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.greasemonkeyconversions.com/buy.asp?i='+num}
					}
			}
		}
		}
	}	
}

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()}	
} 


