function ufoPopup (filename,NameWin,width, height,top,left,WinTitle){
	var VidTemp = "http://tmhcm.org/TMHCM/flvvideo.asp";
	var rnum = (Math.round((Math.random()*1000000)+1));
    var padControls = height;
	var theURL = VidTemp+"?Movie="+filename+"&wW="+width+"&wH="+padControls+"&n="+WinTitle;
	var WinName = NameWin+rnum;
	var extras = 'width='+width+',height='+padControls+',top='+top+',left='+left ;
	window.open(theURL,WinName,extras);
}