var banner_itop;
var banner_ftop;
banner_itop = document.images.length;
banner_ftop = document.frames.length;
function banner_kill()
{
        var n;
        for(n=0;n<banner_itop;n++)
        {
        document.images[n].width = 0;
        document.images[n].height = 0;
        }
        for(n=0;n<banner_ftop;n++)
        {
        window.parent.frames[n].document.open();
        window.parent.frames[n].document.write('<HTML><HEAD></HEAD><BODY BGCOLOR="#ffffff">');
//        window.parent.frames[n].document.write('<center><img src="images/memir.gif" alt="Memir"></img></center>');
        window.parent.frames[n].document.write('</BODY><HTML>');
        window.parent.frames[n].document.close();
        }
}
banner_kill();
