function setDivHeight(div, height)
{
	//alert(height);
	$(div).css('height', height);
}

function scrollToTop(div, speed)
{
      $(#top).ScrollTop(0);
}

/////////////////////////////////////////////////////////////////////
// this function repositions the scroll bar to the top of the page.
// call it from flash by using getURL('javascript:resetToTop()');
/////////////////////////////////////////////////////////////////////
function resetToTop()
 {
	new Fx.Scroll(window, {   
        wait: false,
        duration: 1500,
        transition: Fx.Transitions.Quad.easeInOut
    }).toElement(window);
	
}