function resizeEvents(){
    getSize();
    var windowheight = myHeight - 462;
    if (windowheight<80)
	windowheight=80;
    if (windowheight>220)
	windowheight=220;
    element = document.getElementById("eventTextId");
    element.style.height=windowheight +"px";
    sponsorBarHeight=windowheight;

    windowheight = myHeight - 95;
    if (windowheight<452)
	windowheight=452;
    element = document.getElementById("subHomeId");
    element.style.height=windowheight +"px";
}

