function scrollDialog(fileName,theWidth,theHeight) {
 dlg = window.open (fileName,"displayWindow","toolbar=no,location=no,directories=no,status=no,menubar=no," +
 "scrollbars=yes,resizable=yes," + "width="+theWidth +",height=" +theHeight +"");
dlg.focus();
 }
