function WinOpen(url,width,height) {
    var win = window.open(url, "_blank", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=" + width + ",height=" + height + "\"");
    win.focus();
}

function LawOpen(url,width,height) {
    var win = window.open(url, "_blank", "toolbar=no, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, width=" + width + ",height=" + height + "\"");
    win.focus();
}


var set=0;
function LoginControl() {
    if(set==0){
        set=1;
    }else{
        return false;
    }
}