<!--

function opennew(bild,br,h)
{
  posx=(screen.width-br)/2;
  posy=(screen.height-h)/2;
  if (posx<0) posx=0;
  if (posy<0) posy=0;

screenshot=window.open(bild,"screenshot","resizable=no,scrollbars=no,screenX="+posx+",screenY="+posy+",height="+h+",width="+br+" ");
screenshot.moveTo(posx,posy);
screenshot.focus();
}

function download(url)
{
  url="comingsoon.html";
  opennew(url,300,60);
}
//-->