function popup(url,target,w,h) {
    var args = 'width='+w+',height='+h+',left=10,top=10,resizable,scrollbars';
    ok = window.open(url,target,args);
    ok.focus();
    if (ok) return false;
    else return true;
}
