/* Popup window function (JS 1.1) CVS: $Id: popup1.js,v 1.2 2001/04/10 04:23:09 chris Exp $ */ function PopupWn( url, inTarget, inHeight, inWidth ) { var width = 340; var height = 340; var target = "Help"; if ( inHeight ) { height = inHeight; } if ( inWidth ) { width = inWidth; } if ( inTarget ) { target = inTarget; } this.wh=window.open( url, target, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,'+ 'resizable=1,width=' + width + ',height=' + height ); this.wh.focus(); }