function popWindow(url, width, height) {
popUp = open(url, 'thewin', 'toolbar=0, scrollbars=1, location=0, status=0, menubar=0, resizable=0');
popUp.resizeTo(width, height);
} 