
// popups/transfers
function popWin(url, width, height) { if(url != '') { var popup_win = window.open(url,'popup','scrollbars,resizable,toolbar,width='+width+',height='+height+',left=50,top=50'); popup_win.focus(); return false; } return true; }
function go(url) { if(url != '') { self.location.href = url; return false; } return true; }
