function playMovie(file, w, h, auto, blockIndex) 
{
	window.scrollTo(0,0);
	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/VideoPlayerBackground.jpg&clicktext=" };
		UFO.create(FO, 'flashcontent'+blockIndex);
	}
	catch(e){}
	finally{}
}

