function _showPopupBanner(url, wdt, hgt){

	var id = $('#popupflash');

	var maskHeight = $(document).height();
	var maskWidth = $(window).width();

	//Get the window height and width
	var winH = $(window).height();
	var winW = $(window).width();
		
//	$(id).css('top',  winH / 2 - $(id).height() / 2);
//	$(id).css('left', winW / 2 - $(id).width() / 2);
	
	var xtop = winH / 2 - hgt / 2 - 330;
	if (xtop < 0) xtop = 100;
	
	$(id).css('top',  xtop);
	$(id).css('left', winW / 2 - wdt / 2);

	$(id).fadeIn(1000); 

	$('#popupflash').flashembed({src: url, width:wdt, height:hgt, wmode: 'transparent'});

}
