<!--

function lade(bild,br,h)
{
  posx=(screen.width-br)/2;
  posy=(screen.height-h)/2;
  if (posx<0) posx=0;
  if (posy<0) posy=0;
  pictureWindow=window.open(bild,"flash","resizable=no,scrollbars=no,screenX="+posx+",screenY="+posy+",height="+h+",width="+br+" ");
  pictureWindow.moveTo(posx,posy);
  pictureWindow.focus();
}

function goNow()
{
    lade("start.html",784,660);
}
//-->