function addEvent(obj,evt,func){ try{if(obj.attachEvent)obj.attachEvent('on'+evt,func);else if(obj.addEventListener)obj.addEventListener(evt,func,false);else if(obj.eval)obj["on"+evt]=func;}catch(e){alert("addEvent js:"+e.message); }}
addEvent(window,"load",function() { document.getElementById('no_header').scrollIntoView(true);	});
