<!-- streams.js - routine for opening stream player window -->

function playerwindow() {
  var url = "/programs/streams/playerwindow.php";
  var W = 480;
  var H = 300;

  playerwin = window.open(url,"PlayerWindow", 
	"toolbar=no,location=no,directories=no,status=no," +
	"menubar=no,scrollbars=no,resizable=yes," +
	"width=" + W + ",height=" + H);
  playerwin.focus();
}
