function playMovie(file, w, h, auto, blockIndex) 
{
	try
	{
		var FO = { 	movie:"/CommonScripts/flvplayer.swf", 
					width:" " + w + " ", 
					height:" " + h + " ", 
					majorversion:"7", 
					build:"0", 
					wmode:"transparent",
					flashvars:"file="+file+"&showdigits=true&showfsbutton=false&autostart="+auto+"&image=/commonscripts/GenericVideoPlayerBackground.jpg&clicktext=" };
		UFO.create(FO, 'flashcontent'+blockIndex);
		
	}
	catch(e){}
	finally{}
}

function swfobjectPlayMovie(file, w, h, auto, blockIndex)
{
	var params = {
		wmode:"transparent",
		flashvars:"file="+file+"&showdigits=true&showfsbutton=false&autostart="+auto+"&image=/commonscripts/GenericVideoPlayerBackgroundSmall.jpg&clicktext="
	};
	swfobject.embedSWF("/CommonScripts/flvplayer.swf", "video"+blockIndex, w, h, "7.0", false, false, params, false);
}
