function fixOverflow(editor)     
{     
	editor.GetContentArea().style.overflow = "auto";     
}

function scrollToTop() 
{
	var divContent = document.getElementById("fs_content");
		
	if(divContent != null)
		divContent.scrollTop = 0;
}  