function fBanners(swf, w, h, revflv)
{
	document.write("			<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='" + w + "' height='" + h + "' title=''>");
	document.write("			  <param name='movie' value='" + swf + "?_rev=" + revflv + "'>");
	document.write("			  <param name='quality' value='high'>");
	document.write("			  <param name='wmode' value='transparent'>");
	document.write("			  <embed src='" + swf + "' quality='high' wmode='transparent' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + w + "' height='" + h + "'></embed>");
	document.write("			</object>")
}

function xmasFechar(){
	document.getElementById("bannerXmas").style.display = "none";
}

function displayWindow(theURL,winName,width,height,features) { //v3.1
var window_width = width;
var window_height = height;
var newfeatures= features;
var window_top = (screen.height-window_height)/2;
var window_left = (screen.width-window_width)/2;
newWindow=window.open(''+ theURL + '','' + winName + '', newfeatures  + ',width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left);
newWindow.focus();
}
