function initBanner(){
   var bannercontainer = document.getElementById("bannercontainer");
   
if(bannercontainer != null)
   {
   bannercontainer.style.position = "absolute";   
   bannercontainer.style.overflow = "hidden";
   bannercontainer.style.height = "90px";
   bannercontainer.style.display = "block";
   
      /*@cc_on
   bannercontainer.style.position = "relative";
   @*/
	}
}
function showBanner(){
   document.getElementById("bannercontainer").style.height = "600px";
}
function hideBanner(){
   document.getElementById("bannercontainer").style.height = "90px";
}
