function scrollToBottom(){
if (document.body.scrollHeight) { 
  window.scroll(0, document.body.scrollHeight); 
} 
else if (screen.height) { // IE5 
  window.scroll(0, screen.height); 
}
}
