<!-- nezobrazi emailove adresy robotum
function createlink( name, text ){
  zavinac = "@"
  domena = "board-online.cz"

  if( createlink.arguments.length == 1 ) {
    document.write("<a href='mailto:"+name+""+zavinac+""+domena+"'>"+name+""+zavinac+""+domena+"</a>")
  } 
  else {
    document.write("<a href='mailto:"+name+""+zavinac+""+domena+"'>"+text+"</a>")
  }
}

function toogleDipslay(toogleId){
	if (toogleId)
	{
		toogleElement = document.getElementById(toogleId);
		if (toogleElement.className != 'noscreen' || toogleElement.className == '')
		{
			toogleElement.className = 'noscreen';
		}
		else
		{
			toogleElement.className = '';
		}
	}
}
//-->