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