﻿window.onload = function(){
   SetScrollPosition();
}

function SetDivPosition(){
   var intY = document.getElementById("shoutbox_content").scrollTop;
   document.title = intY;
   document.cookie = "yPos=!~" + intY + "~!";
}

function SetScrollPosition() {
   var strCook = document.cookie;
   if(strCook.indexOf("!~")!=0)
   {
      var intS = strCook.indexOf("!~");
      var intE = strCook.indexOf("~!");
      var strPos = strCook.substring(intS+2,intE);
      document.getElementById("shoutbox_content").scrollTop = strPos;
   }
}