// JavaScript Document

function openwindow() {
  width	=275;
  height=219;
  xpos = (screen.width - parseInt(width)) / 2;
  ypos = (screen.height - parseInt(height)) / 2;
  win = window.open('http://www.radio1.ch/radiostream.html','stream','width='+width+',height='+height+',menubar=no,scrollbars=no,resizable=no');
  win.moveTo(xpos, ypos);
  win.focus();
}