function ShowHideSection(oHide,img) {
if (oHide.style.display != "none")
        {
        oHide.style.display = "none";
        img.src = "http://www.mtpp74.ru/images/at1.gif";
        }
else
        {
        oHide.style.display = "inline";
        //oHide.style.display = "visible";
        img.src = "http://www.mtpp74.ru/images/at.gif";
        }
}
