function initswf(context,movie,width,height,title,autoplay)
{
	var swf_width=width;
	var swf_height=height;
	var texts=texts;
	var files=movie;
	
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://61.135.147.81:81/swf/swflash.cab#version=6,0,0,0" width="'+ swf_width +'" height="'+ swf_height +'">');
	document.write('<param name="movie" value="'+context+'vcastr21.swf"><param name="quality" value="high">');
	document.write('<param name="menu" value="false"><param name="allowFullScreen" value="true" />');
	document.write('<param name="FlashVars" value="vcastr_file='+files+'&vcastr_title='+texts+'&IsAutoPlay='+autoplay+'">');
	document.write('<embed src="'+context+'vcastr21.swf" allowFullScreen="true" FlashVars="vcastr_file='+files+'&vcastr_title='+texts+'" menu="false" quality="high" width="'+ swf_width +'" height="'+ swf_height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>'); 
}

function play(video,w,h,s)
{
	if (w == '' || w ==null || w ==undefined)
	{
		w = 180;
	}
	if (h == '' || h ==null || h ==undefined)
	{
		h = 152;
	}
    if (s !=0 )
    {
        s = 1;
    }
			var vp = document.getElementById("flash");
            /*
			vp.innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://61.135.147.81:81/swf/swflash.cab#version=6,0,0,0" width="'+ w +'" height="'+ h +'">'
				+ '<param name="movie" value="/images/vcastr21.swf">'
				+ '<param name="quality" value="high">'
				+ '<param name="menu" value="false">'
				+ '<param name="allowFullScreen" value="true" />'
				+ '<param name="FlashVars" value="vcastr_file=/video/'+ video +'&IsAutoPlay='+s+'">'
				+ '<embed src="/images/vcastr21.swf" allowFullScreen="true" FlashVars="vcastr_file=/video/'+ video +'&IsAutoPlay='+s+'" menu="false" quality="high" width="490" height="390" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
				+ '</object>'; 
            */
            if (w == 180 && h == 152){
                 vp.innerHTML = '<img src="/video/'+ video +'.jpg" wdith="'+w+'" height="'+h+'">';
            }else{
                 vp.innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://61.135.147.81:81/swf/swflash.cab#version=6,0,0,0" width="'+ w +'" height="'+ h +'">'
                + '<param name="movie" value="/images/vcastr21.swf">'
                + '<param name="quality" value="high">'
                + '<param name="menu" value="false">'
                + '<param name="allowFullScreen" value="true" />'
                + '<param name="FlashVars" value="vcastr_file=/video/'+ video +'&IsAutoPlay='+s+'">'
                + '<embed src="/images/vcastr21.swf" allowFullScreen="true" FlashVars="vcastr_file=/video/'+ video +'&IsAutoPlay='+s+'" menu="false" quality="high" width="490" height="390" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
                + '</object>'; 
            }
             
}

