function popup(url) { width=.9 * screen.width; height=.75 * screen.height; topset=.05 * screen.height; leftset=.05 * screen.width; settings="toolbar=yes,location=no,directories=no,"+ "status=no,menubar=yes,scrollbars=yes,"+ "resizable=yes,top="+topset+",left="+leftset+",width="+width+",height="+height; MyNewWindow=window.open(url,'PPwinI',settings); if (MyNewWindow.blur) MyNewWindow.focus(); //return MyNewWindow; } function popup2(url) { width=.8 * screen.width; height=.6 * screen.height; topset=.2 * screen.height; leftset=.2 * screen.width; settings="toolbar=yes,location=no,directories=no,"+ "status=no,menubar=yes,scrollbars=yes,"+ "resizable=yes,top="+topset+",left="+leftset+",width="+width+",height="+height; MyNewWindow=window.open(url,'PPwinE',settings); if (MyNewWindow.blur) MyNewWindow.focus(); } function popupd(myform,url) { windowname = "drupal"; width=.8 * screen.width; height=.6 * screen.height; topset=.2 * screen.height; leftset=.2 * screen.width; settings="toolbar=yes,location=no,directories=no,"+ "status=no,menubar=yes,scrollbars=yes,"+ "resizable=yes,top="+topset+",left="+leftset+",width="+width+",height="+height; MyNewWindow=window.open(url,'PPISd',settings); myform.target=windowname; if (MyNewWindow.blur) MyNewWindow.focus(); }