function dobook(anc, url, titl)
{
	if (window.sidebar)
	{
		window.sidebar.addPanel(titl, url, '');
	}
	else if (window.opera)
	{
		anc.rel='sidebar';
		anc.href=url;
		anc.title=titl;
        return true;
	}
	else
	{
		window.external.addfavorite(url, titl);
	}

    return false;
}


function switchme()
{
	if(document.getElementById('games').value != '')
	{
		window.location = document.getElementById('games').value;
	}
}

function MM_jumpMenu(targ,selObj,restore)
{ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function blurAnchors(){
  if(document.getElementsByTagName){
    var a = document.getElementsByTagName("a");
    for(var i = 0; i < a.length; i++){
      a[i].onfocus = function(){this.blur()};
    }
  }
}
window.onload = blurAnchors;