
	function _getSubVideo(VideoURL, tmpWidth, tmpHeight){		
		var LibPath = 'http://' + location.hostname + '/lib/vcastr';
		var Video   = VideoURL;
		var Width   = (tmpWidth) ? tmpWidth : 344;
		var Height  = (tmpHeight) ? tmpHeight : 258;
		var HTML    = '';
			HTML   += '<object type="application/x-shockwave-flash" data="' + LibPath + '/vcastr3.swf" width="' + Width + '" height="' + Height + '" id="vcastr3">';
			HTML   += '		<param name="movie" value="' + LibPath + '/vcastr3.swf"/> ';
			HTML   += '		<param name="allowFullScreen" value="true" />';
			HTML   += '		<param name="FlashVars" value="xml=';
			HTML   += '				{vcastr}';
			HTML   += '					{channel}';
			HTML   += '						{item}';
			HTML   += '							{source}' + Video + '{/source}';
			HTML   += '						{/item}';
			HTML   += '					{/channel}';			
			HTML   += '					{plugIns}';
			HTML   += '						{logoPlugIn}';
			HTML   += '							{url}' + LibPath + '/logoPlugIn.swf{/url}';			
			HTML   += '						{/logoPlugIn}';
			HTML   += '					{/plugIns}';
			HTML   += '				{/vcastr}"/>';
			HTML   += '		</object>';
			return HTML;
		}