function mw6show(i)
{
    var id = 'popup' + i;
    if (document.getElementById) { // DOM3 = IE5, NS6
        document.getElementById(id).style.visibility = 'visible';
    } else {
        if (document.layers) { // Netscape 4
            document.id.visibility = 'visible';
        }
        else { // IE 4
            document.all.id.style.visibility = 'visible';
        }
    }
}

function mw6hide(i)
{
    var id = 'popup' + i;
    if (document.getElementById) { // DOM3 = IE5, NS6
        document.getElementById(id).style.visibility = 'hidden';
    } else {
        if (document.layers) { // Netscape 4
            document.id.visibility = 'hidden';
        }
        else { // IE 4
            document.all.id.style.visibility = 'hidden';
        }
    }
}

function mw6setformfocus() {
    for (var i = 0; i < document.forms.length; i++) {
        for (var j = 0; j < document.forms[i].elements.length; j++) {
            if(document.forms[i].elements[j].type == 'text') {
                document.forms[i].elements[j].focus();
                return;
            }
        }
    }
}

// window.onload="setformfocus";
