var _nameArray=new Array("adv7");
function refreshADV(_visible,_left,_top,_right,_bottom){
   var MYiframe = document.getElementById('adv7');
   if(_visible){
        MYiframe.style.display='block';
	MYiframe.style.left=_left+'px';
	MYiframe.style.top=_top+'px';
	MYiframe.style.right=_right+'px';
	MYiframe.style.bottom=_bottom+'px';
	reloadADV();
    }else{
        MYiframe.style.display='none';
    }
}
