// JavaScript Document


//父页面置顶表示
function onload()   
  {   
  window.scrollTo(0,0);  
  } 
  
  
//子页面调用父页面的方法
function scrolltop() {
	parent.onload();
}

//子页面调用父父页面的方法
function scrolltopsec() {
	parent.parent.onload();
}

var number=8;

function LMYC() {
var lbmc;
//var treePic;
    for (i=1;i<=number;i++) {
        lbmc = eval('LM' + i);
        //treePic = eval('treePic'+i);
        //treePic.src = 'http://www.webdm.cn/images/20091230/file.gif';
        lbmc.style.display = 'none';
    }
}
 
function ShowFLT(i) {
    lbmc = eval('LM' + i);
    //treePic = eval('treePic' + i)
    if (lbmc.style.display == 'none') {
        LMYC();
        //treePic.src = 'http://www.webdm.cn/images/20091230/nofile.gif';
        lbmc.style.display = '';
    }
    else {
        //treePic.src = 'http://www.webdm.cn/images/20091230/file.gif';
        lbmc.style.display = 'none';
    }
}