<!--
var url="http://www.warcraft-guide.de/"
var title="WarCraft 3 - Guide"
function bookmark()
{
window.external.AddFavorite(url,title)
}
;
//-->

<!--
function mOver(cell)
{
   if (!cell.contains(event.fromElement))
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#41060D';
   }
}

function mOut(cell)
{
   if (!cell.contains(event.toElement))
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#808080';
   }
}

function mClick(cell)
{
   if(event.srcElement.tagName=='TD')
   {
      cell.children.tags('A')[0].click();
	   }
}
;
//-->


  function openWindow (nameurl, namewindow, width, height){

    x = (640 - width)/2, y = (480 - height)/2;
    scrollb = 'no';
    res = 'no';
  if (screen) {

        y = (screen.availHeight - height)/2;

        x = (screen.availWidth - width)/2;

    }
    if ((namewindow == 'big') || (namewindow == 'highscore')) {
    	scrollb = 'yes';
	res = 'yes';
    }

    var prevwin = window.open(nameurl,namewindow,'width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+',scrollbars='+scrollb+',resizable='+res);
    prevwin.focus();
  }




