// popup.js
function OpenWin(url,w,h){
    win=window.open(url,"_blank","width="+w+",height="+h+",scrollbars=yes,resizable=yes");
    //win=window.open("../info/index.html","info","width=765,height=600,scrollbars=yes,resizable=yes");
}

