function getAxisVideoStream(baseUrl, file, width, height)
{
    var output = "<div class='bannerimg'><div>";
    if ((navigator.appName == "Microsoft Internet Explorer") &&
       (navigator.platform != "MacPPC") && (navigator.platform != "Mac68k"))
    {
      // If Internet Explorer under Windows then use ActiveX 
      output += '<object id="Player" width='
      output += width;
      output += ' height=';
      output += height;
      output += ' classid="CLSID:DE625294-70E6-45ED-B895-CFFA13AEB044" ';
      output += 'codebase="';
      output += baseUrl;
      output += 'activex/AMC.cab#version=3,32,19,0">';
      output += '<param name="MediaURL" value="';
      output += baseUrl;
      output += file + '">';
      output += '<param name="MediaType" value="mjpeg-unicast">';
      output += '<param name="ShowStatusBar" value="0">';
      output += '<param name="ShowToolbar" value="0">';
      output += '<param name="AutoStart" value="1">';
      output += '<param name="StretchToFit" value="1">';
      // Remove the '//' for the ptz settings below to use the code for click-in-image. 
         //  output += '<param name="PTZControlURL" value="';
         //  output += BaseURL;
         //  output += '/axis-cgi/com/ptz.cgi?camera=1">';
         //  output += '<param name="UIMode" value="ptz-relative">'; // or "ptz-absolute"
      output += '<br /><b>Web kamera</b><br />';
      output += 'For &aring; se web-kamera i Internet Explorer m&aring; tilleggsprogramvare installeres. <br />' ;
      output += '<a target="_blank" href="http://194.19.11.26/">Installer programvare</a>'      
      output += '<br /><br /></object>';
    } else {
      // If not IE for Windows use the browser itself to display
      theDate = new Date();
      output += '<img id="Player" src="';
      output += baseUrl;
      output += file;
      output += '&dummy=' + theDate.getTime().toString(10);
      output += '" height="';
      output += height;
      output += '" width="';
      output += width;
      output += '" alt="Camera Image">';
    }
    output += "</div></div>";
    
    return output;
}
