function popup(filename, x, y, scrollbars) {
 etcParams = ",directories=0,location=0,menubar=0,resizable=0,status=0,toolbar=0,scrollbars=" + (scrollbars ? "yes" : "no");
 mainWin = window.open(filename, "_blank", "width=" + x + ",height=" + y + etcParams);
}
