Banners = new Object();
	
	Banners.displayFlashBanner = function (container,file,id,width,height) {
		var banner = new SWFObject("/repository/layout/banners/"+file+"?id="+id, "showcase",width,height, "8", "#FFFFFF", true);
		banner.addParam("wmode", "transparent");
		banner.write(container);
	}
	Banners.displayTopGFXBanner = function(file,id) {
		$("#header2").css("background","url('/repository/layout/banners/"+file+"') no-repeat");
		$("#header2").click(function(){clickTag(id)});
	}
	clickTag = function (id, url){
		if (typeof url == 'undefined') {
			url = '';
		}
		window.open ("/getContent.php?plugin=Banner&content=handlerClickTag&clickID="+id+"&clickURL="+url,"mywindow");
	}