<!--
var queryStringV = window.location.search;                           //  get search query from ? onwards
queryStringV = unescape(queryStringV);                                  // get rid of all those %%% characters
if (queryStringV !="") {

// in this case ignore if no query string at all





var result1 = queryStringV.substr(1);                                              // clip.wmv  (get rid of the ?)
var wmvstr = "<font color = 'gold'>" + result1 + "</font>";       // display text above the wma player
if (queryStringV.substr(0,5) == "?http")                                          // hide gold host 2 address
{ wmvstr = "<font color = 'gold'>" + result1.substr(20) + "</font>" } 

document.write("<center><small><FONT COLOR=\"#00ff00\">" + wmvstr + " is now playing in the media player below. You may have to press START<BR></FONT></small></center>");
document.write("<EMBED SRC=\" " + result1 + "\" WIDTH=\"416\" HEIGHT=\"310\" ALIGN=\"BOTTOM\"  hidden=\"false\" autostart=\"true\">");
}
// natural size of a wmv stream is 208 x 160  (the 416 x 310 is double size and to allow space for text at top)
//-->
