function openWindow(url, name, width, height) {
    popupWin = window.open(url, name, 'status,width=' + width + ',height=' + height)
}
function ws(msgStr) {
    window.status = msgStr;
}