function Popup(url, width, height, scrollbars, resizable) {
new_window = window.open (url, "new_window","location=0,status=0,menubar=0,resizable=0,scrollbars=" + scrollbars + ",width=" + width + ",height=" + height);
new_window.moveTo(0,0);
} 
