function openpop(page,name,w,h,others){
    var prm="";
    others=""+others;
    if (others.search(/t/i) != -1) {
        prm += ",toolbar=no";
    }
    if (others.search(/l/i) != -1) {
        prm += ",location=no";
    }
    if (others.search(/s/i) != -1) {
        prm += ",status=yes";
    }
    if (others.search(/m/i) != -1) {
        prm += ",menubar=no";
    }
    if (others.search(/b/i) != 0) {
        prm += ",scrollbars=no";
    }
    if (others.search(/r/i) != -1) {
        prm += ",resizable=no";
    }
    window.open(page,name,"directories=no,width="+w+",height="+h+prm);
}


function openpop2(page,name,w,h,others){
    var prm="";
    others=""+others;
    if (others.search(/t/i) != -1) {
        prm += ",toolbar=no";
    }
    if (others.search(/l/i) != -1) {
        prm += ",location=no";
    }
    if (others.search(/s/i) != -1) {
        prm += ",status=yes";
    }
    if (others.search(/m/i) != -1) {
        prm += ",menubar=no";
    }
    if (others.search(/b/i) != 0) {
        prm += ",scrollbars=yes";
    }
    if (others.search(/r/i) != -1) {
        prm += ",resizable=no";
    }
    window.open(page,name,"directories=no,width="+w+",height="+h+prm);
}


function stword(word){
    window.status = word;
    return true;
}