<!--
function MM_openBrWindow(theURL,winName,features){
    window.open(theURL,winName,features);
}

function DoHome(http){
    this.home.style.behavior='url(#default#homepage)';
    this.home.setHomePage(http);
}

function ShowMenu(MenuID){
    if(MenuID.style.display=="none"){
        MenuID.style.display="";
    }else{
        MenuID.style.display="none";
    }
}

function lxml(num){
    var i,j,arrTemp=[];
    for(i=0;i<num;i++){
        arrTemp[i]=document.all(arrSel[i]).options[document.all(arrSel[i]).selectedIndex].text;
    }
    if(num==arrSel.length){
        return;
    }
    with(document.all(arrSel[num])){
        length=0;
        var obj=document.all.xmldata.XMLDocument.childNodes[0];
        for(i=0;i<num;i++){
            obj=obj.selectSingleNode(arrSel[i]+'[@text="'+arrTemp[i]+'"]');
        }
        for(i=0;i<obj.childNodes.length;i++){
            //options[length++].text=obj.childNodes[i].getAttribute("text");
            options[length++]=new Option(obj.childNodes[i].getAttribute("text"),obj.childNodes[i].getAttribute("value"));
        }
        onchange=new Function("lxml("+(num+1)+")");
        onchange();
    }
}

function killErrors() {
    return true;
}
window.onerror=killErrors;
//-->
