function window_event_scroll()
{
if(!document.getElementById("noticy"))return;
//document.getElementById("noticy").style.position = "relative";
var top = document.documentElement.scrollTop + 150;
if(top < 0) top = 0;
document.getElementById("noticy").style.top = top + "px";
}
if (window.attachEvent)
{
window.attachEvent("onscroll", window_event_scroll);
}
else
{
window.addEventListener("scroll",window_event_scroll,false);
}