
    //function WriteWMPlayer(playerID, pURL,pWidth,pHeight,autoplay)
    function WriteWMPlayer(playerID, pURL,pWidth,pHeight)
    {
        var autoplay;
        // if it explicitly states autoplay is false, then set to 0
        if ((arguments.length >= 5) && (arguments[4] == false)) {
            autoplay = "0";
        } else {
            autoplay = "1";
        }

        document.write("<object id=\"" + playerID + "\"" +
           "type=\"application/x-ms-wmp\"" + 
           "width=\"" + pWidth + "\" height=\"" + pHeight + "\" classid=\"clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6\"> " + 
           "<param name=\"autostart\" value=\"" + autoplay + "\" /> " + 
           "<param name=\"invokeURLs\" value=\"1\"/> " + 
           "<param name=\"url\" value=\"" + pURL + "\" /> " + 
           "<param name=\"src\" value=\"" + pURL + "\"/> " + 
           "<param name=\"uiMode\" value=\"mini\" /> " + 
           "<param name=\"showStatusBar\" value=\"1\" /> " + 
           "<param name=\"stretchToFit\" value=\"0\" /> " + 
           "<embed id=\"" + playerID + "_embed\" " + 
           "type=\"video/x-ms-asf-plugin\" " + 
           "width=\"" + pWidth + "\" height=\"" + pHeight + "\" " + 
           "url=\"" + pURL + "\" " + 
           "src=\"" + pURL + "\" " + 
           "uimode=\"mini\" " + 
           "showstatusbar=\"1\" " + 
           "autostart=\"" + autoplay + "\" " + 
           "defaultframe=\"slides\" " + 
           "stretchtofit=\"0\" " + 
           "invokeurls=\"1\" " + 
           "showpositioncontrols=\"0\" " +
           " /> " + 
           "</object> ");
}


