// Script by Thomas Stich
// http://www.stichpunkt.de/beitrag/popup.html
// use it if you like it
//
// <a href="html-or.jpg" onclick="return popup(this,123,456)" title="..."
// or
// <a href="html-or.jpg" onclick="return popup(this)" title="..."


var pop = null;

function popdown() {
  if (pop && !pop.closed) pop.close();
}

function openBox(obj,theme,streams) {
  var url = 'http://streambox.rautemusik.fm/static;'+theme+';'+streams;
  if (!url) return true;
  var w = 143;  // 150px*150px is the default size
  var h = 131;
  var args = 'width='+w+',height='+h+',resizable=no,toolbar=no,status=no,menubar=no,scrollbars=no,location=no';
  popdown();
  pop = window.open(url,'',args);
  return (pop) ? false : true;
}

//window.onunload = popdown;
//window.onfocus = popdown;
