// JavaScript Document

function set_pos (left)
{
 if (window.pageYOffset >= 0)
   {
         left.style.top = window.pageYOffset;
   }
   if (document.body.scrollTop >= 0) //Für IE
   {
  left.style.top = document.body.scrollTop + 0;
 }
}