function addLoadEvent(func)
{var oldonload=window.onload;if(typeof window.onload!='function')
{window.onload=func;}
else
{window.onload=function()
{if(oldonload)
{oldonload();}
func();}}}
function ElementResize()
{var area=document.getElementById("area");var footer_img=document.getElementById("footer_img");var header_img=document.getElementById("header_img");var search=document.getElementById("search");var top_menu=document.getElementById("top_menu");var WinWidth=area.offsetWidth;search.style.left=(WinWidth-search.offsetWidth-4)+'px';search.style.visibility="visible";top_menu.style.left=(WinWidth-search.offsetWidth-75)+'px';top_menu.style.visibility="visible";footer_img.style.width=WinWidth+'px';header_img.style.width=WinWidth+'px';}
function ElementResizeLoad()
{window.onresize=ElementResize;ElementResize();}