
function OpenPopUp( address, width, height ) {
    settings = "top=200,left=100,width=" + width + ",height=" + height + 
               ",location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes";
    window.open(address, "LABEL", settings)
}

function OpenPsw( form, field ) {
    pswField = eval("document." + form + "." + field); 
    OpenPopUp("./admin.md5psw.popup.php", 260, 130)
}

