
function writeVideoPlayer(url_video_player,url_video,name_video,skin, _width, _height)
{
    var video_url = url_video_player+'@src='+url_video+'&s='+skin;
    document.write('<object id="video" codebase="../fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0/#version=8,0,0,0/default.htm" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" style="width:'+(_width != '' ? _width : 400)+'px; height:'+(_height != '' ? _height : 300)+'px;">');
    document.write('<param name="movie" value="'+video_url+'">');
    document.write('<param name="src" value="'+video_url+'">');
    document.write('<param name="quality" value="High">');
    document.write('<param name="allowScriptAccess" value="sameDomain">');
    document.write('<param name="bgcColor" value="FFFFFF">');
    document.write('<embed src="'+video_url+'" quality="high" bgcolor="#ffffff" name="video" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="../www.macromedia.com/go/getflashplayer" style="width:'+(_width != '' ? _width : 400)+'px; height:'+(_height != '' ? _height : 300)+'px; text-align:middle;">');
    document.write('</object>');
}

