function resizeEvents(){
    getSize();
    var windowheight = myHeight - 462;
    if (windowheight<150)
	windowheight=150;
    if (windowheight>150)
	windowheight=150;
    element = document.getElementById("eventTextId");
    element.style.height=windowheight +"px";
    sponsorBarHeight=windowheight;

    windowheight = myHeight - 95;
    if (windowheight<600)
	windowheight=600;
    element = document.getElementById("subHomeId");
    element.style.height=windowheight +"px";
}

