﻿function ShowVideo(sUrl,sName, sTimeStamp)
{
    var _iWidth = 480;
	var _iHeight = 282;
    
    var _sHeaderTag = "<h1>"  + sName + "</h1><span>" + sTimeStamp + "</span>";
    
    var _sFlashTag = "<object width='" + _iWidth + "' height='" + _iHeight + "' id='videoPlayer' name='videoPlayer' type='application/x-shockwave-flash' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' ><param name='movie' value='";
    _sFlashTag += sUrl;
    _sFlashTag += "' /><param name='quality' value='high' /><param name='bgcolor' value='#000000' /><param name='allowfullscreen' value='true' /><param name='flashvars' value= '&videoWidth=0&videoHeight=0&dsControl=manual&dsSensitivity=100&DS_Status=true&streamType=vod&autoStart=true&serverURL=rtmp:/vod/mp4:sample2_1000kbps.f4v'/>";
    _sFlashTag += "<embed src='";
    _sFlashTag += sUrl;
    _sFlashTag += "' width='" + _iWidth + "' height='" + _iHeight + "' id='videoPlayer' quality='high' bgcolor='#000000' name='videoPlayer' allowfullscreen='true' pluginspage='http://www.adobe.com/go/getflashplayer'   flashvars='&videoWidth=0&videoHeight=0&dsControl=manual&dsSensitivity=100&DS_Status=true&streamType=vod&autoStart=true&serverURL=rtmp:/vod/mp4:sample2_1000kbps.f4v' type='application/x-shockwave-flash'></embed></object>";
 
    $get('Video').innerHTML = _sHeaderTag + _sFlashTag;
}