<!--
ttt=2;
function showfloater(){
if(ttt==2){
	ttt=1;
	floater.style.display = "";
	//advance.innerText="关闭高级用户设置选项"
}else{
	ttt=2;
	floater.style.display = "none";
	//advance.innerText="显示高级用户设置选项"
}
}

function sh(object,object2,txtinfos){
if(object.style.display == "none"){
	object.style.display = "inline";
	object2.innerHTML="<img src='images/minus.gif' border=0 width='10'>Hide"+txtinfos
}else{
	object.style.display = "none";
	object2.innerHTML="<img src='images/plus.gif' border=0 width='10'>Show "+txtinfos
}
}

function ToggleNode(nodeObject, imgObject,tbobj){
         if (nodeObject.style.display == '' || nodeObject.style.display == 'inline') {
			low(tbobj,nodeObject)
			//nodeObject.style.display = 'none';
			imgObject.src = './images/collapse.gif';
         } else {
			 high(tbobj,nodeObject)
             //nodeObject.style.display = 'inline';
             imgObject.src = './images/expand.gif';
         }
}

function ToggleNode3(nodeObject, imgObject){
         if (nodeObject.style.display == '' || nodeObject.style.display == 'inline') {
			imgObject.src = './images/collapse.gif';
			nodeObject.style.display = 'none';
         } else {
             nodeObject.style.display = 'inline';
             imgObject.src = './images/expand.gif';
         }
}

function ToggleNode2(nodeObject){
         if (nodeObject.style.display == '' || nodeObject.style.display == 'inline') {
             nodeObject.style.display = 'none';
             //imgObject.src = './images/collapse.gif';
         } else {
             nodeObject.style.display = 'inline';
             //imgObject.src = './images/expand.gif';
         }
}

function high(which2,which3){
//clearInterval(highlighting)
theobject=which2
theobject3=which3
highlighting=setInterval("highlightit(theobject,theobject3)",1)
}
function low(which2,which3){
//clearInterval(highlighting)
theobject=which2
theobject3=which3
lowlighting=setInterval("lowlightit(theobject,theobject3)",1)
//which2.filters.alpha.opacity=60
}
function highlightit(cur2,cur3){
cur3.style.display = 'inline'
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if (window.highlighting)
clearInterval(highlighting)

}
function lowlightit(cur2,cur3){
if (cur2.filters.alpha.opacity>0)
cur2.filters.alpha.opacity-=5
else if (window.lowlighting)
clearInterval(lowlighting)
if (cur2.filters.alpha.opacity<=0)
{
cur3.style.display = 'none'
}
}

-->

