/**
 * Scrolltop function is to scroll the browser window to the top. It is activated by the flash news script.
 *
 */
 
 scrollTop = function() {
 	window.scrollTo(0,0);
 } 