function displayVideo(src, width, height, flv, previewImg, videoId, autoPlay) {
	var str = "";
	
	if(autoPlay == ""){
		autoPlay=false;
	}
	
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'" id="'+videoId+'">';
	str += '<param name="movie" value="'+src+'" />';
	str += '<param name="wmode" value="transparent" />';
	str += '<param name="flashvars" value="src='+flv+'&autoPlay='+autoPlay+'&previewImageUrl='+previewImg+'" />';
	str += 	'<!--[if !IE]>-->';
	str += 	'<object type="application/x-shockwave-flash" data="'+src+'" width="'+width+'" height="'+height+'">';
	str += 		'<param name="flashvars" value="src='+flv+'&autoPlay='+autoPlay+'&previewImageUrl='+previewImg+'" />';
	str += 		'<param name="wmode" value="transparent" />';
	str += 	'<!--<![endif]-->';
	str += 		'<p>Please get the latest Adobe Flash Player to view this content.</p>';
	str += 		'<a href="http://www.adobe.com/go/getflashplayer">';
	str += 			'<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />';
	str += 		'</a>';
	str += 	'<!--[if !IE]>-->';
	str += 	'</object>';
	str += 	'<!--<![endif]-->';
	str += '</object>';
	
	swfobject.registerObject("flvPlayer", "8.0.0");
	
	document.write(str);
}
