﻿function ShowVideo(VideoPath, ThumbPath, AutoPlay, W, H){
    var Width = (typeof (W) != "undefined") ? W : "240";
    var Height = (typeof (H) != "undefined") ? H : "176";
    var Buffer = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0\" width=\"" + Width + "\" height=\"" + Height + "\" id=\"Object3\" align=\"middle\">" + 
    "<param name=\"allowScriptAccess\" value=\"sameDomain\" />" +
    "<param name=\"allowFullScreen\" value=\"false\" />" + 
    "<param name=\"movie\" value=\"swf/FlvPlayer2.swf?VideoPath=" + VideoPath + "&ImagePath=" + ThumbPath + "&AutoPlay=" +  AutoPlay+ "\" />" + 
    "<param name=\"quality\" value=\"high\" />	" +
    "<embed src=\"swf/FlvPlayer2.swf?VideoPath=" + VideoPath + "&ImagePath=" + ThumbPath + "&AutoPlay=" + AutoPlay + "\" quality=\"high\" " +
    "width=\"" + Width + "\" height=\"" + Height + "\" name=\"Video3\" align=\"middle\" " + 
    "allowScriptAccess=\"sameDomain\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" " +
    "pluginspage=\"http://www.adobe.com/go/getflashplayer\" />" +
    "</object>";
    document.write(Buffer);
}

