function popUp(W,H,R) {
    popWin = window.open("", "popUp", "height=" + H + ",width=" + W + ",location=no,scrollbars=no,toolbar=no,resizable="+R+",hotkeys=yes");
    popWin.focus();
    return true;
}