function openMovie(someMovie, flWidth, flHeight){

var moview = flWidth;
var movieh = flHeight;
var scrwidth = window.screen.availWidth;
var scrheight = window.screen.availHeight;
var left_point = parseInt(scrwidth / 2) - parseInt(moview / 2);
var top_point = parseInt(scrheight / 2) - parseInt(movieh / 2);
movie = window.open(someMovie, 'movie', 'width='+moview+',height='+movieh+',top='+scrheight+',left='+scrwidth);
movie.moveTo(left_point, top_point);
}

