function fon(nnn){ for(i=0; i<top.frames.length; i++) top.frames[i].document.body.style.backgroundImage="url("+nnn+")"; }// функция установки фона во всех фреймах function nofon(nnn){ for(i=0; i<top.frames.length; i++) top.frames[i].document.body.style.backgroundImage=""; }// функция сброса фона
function fon(nnn){ document.body.style.backgroundImage="url("+nnn+")"; }// функция установки фона во всех фреймах function nofon(nnn){ document.body.style.backgroundImage=""; }// функция сброса фона
function fon(nnn){// функция установки и сброса фона во всех фреймах var image = nnn ? 'url('+nnn+')' : 'none'; document.getElementById("bottomdiv").style.backgroundImage = image; document.getElementById("usersdiv").style.backgroundImage = image; document.getElementById("privatdiv").style.backgroundImage = image; document.getElementById("leftdiv").style.backgroundImage = image; document.getElementById("topdiv").style.backgroundImage = image; }