function playStreamingObject(fileName) {
  w = window.open("", "__mywebsitewindow","top=30,left=30,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=360,height=288");
  var streamingURL = 'mms://wm1.stream.windesheim.nl/rtv/';
  w.document.write("<html>");
  w.document.write("<head><title></title></head>");
  w.document.write("<body marginwidth=\"0\" marginheight=\"0\" leftmargin=\"0\" topmargin=\"0\">");		
  w.document.write("<OBJECT ID=\"WMPlayer\" CLASSID=\"CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95\" HEIGHT=\"288\" WIDTH=\"360\" STANDBY=\"Loading Windows Media Player components...\" TYPE=\"application/x-oleobject\">"); 
  w.document.write("<param name=\"FILENAME\" value=\"" + streamingURL + fileName + "\">");  
  w.document.write("<param name=\"AUTOSTART\" value=\"TRUE\">");  
  w.document.write("<param name=\"PLAYCOUNT\" value=\"1\">");  
  w.document.write("<param name=\"SHOWCONTROLS\" value=\"TRUE\">");  
  w.document.write("<param name=\"SHOWDISPLAY\" value=\"FALSE\">"); 
  w.document.write("<param name=\"SHOWSTATUSBAR\" value=\"FALSE\">"); 
  w.document.write("<embed name=\"WMPlayer\" TYPE=\"application/x-mplayer2\" SRC=\"" + streamingURL + fileName + "\" HEIGHT =\"288\" WIDTH =\"360\" AUTOSTART=\"1\" PLAYCOUNT =\"1\" SHOWCONTROLS =\"1\" SHOWDISPLAY =\"0\" SHOWSTATUSBAR =\"0\">"); 
  w.document.write("</embed>");
  w.document.write("</OBJECT>");
  w.document.write("</body>");		
  w.document.write("</html>");		
  w.document.close();
  w.focus();
  return;
} 

