function insertFlash(elm, url, w, h) {
if (!document.getElementById(elm)) return;
var str = '';
str += '<embed src="'+ url +'" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ w +'" height="'+ h +'"></embed>';
document.getElementById(elm).innerHTML = str;
}

function insertVedio(elm, vediofile,vedioname, w, h,autostart)
{
if (!document.getElementById(elm)) return;
var str='';
str+='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+ w +'" height="'+ h +'"><param name="movie" value="Flvplayer.swf" /><param name="quality" value="high" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="vcastr_file='+ vediofile +'&LogoText='+vedioname+'&BufferTime=3&IsAutoPlay='+autostart+'" /><embed src="Flvplayer.swf" allowfullscreen="true" flashvars="vcastr_file='+ vediofile +'&LogoText='+vedioname+'&IsAutoPlay='+autostart+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ w +'" height="'+ h +'"></embed></object>'
document.getElementById(elm).innerHTML = str;
}