<!--

function popWindow(theLocation,theWidth,theHeight,extLink) {

  // set the features
  var features =
    'width=' + theWidth +
    ',height=' + theHeight +
    ',directories=0,location=0,menubar=0,scrollbars=1' +
    ',status=1,toolbar=0,resizable=1,top=25,left=25';

	// if an outside link, then may need to open/close window for re-sizing
	if (extLink) {

  // create an instance of new window as blank.htm, but if the window is open,
  //    it takes the size with which it was originally created
  newWindow = window.open('blank.htm', 'secondWindow', features);
  // close the window...this allows us to re-open it in the proper size
  newWindow.window.close();
	
	}
	
  // now open the window
  newWindow = window.open(theLocation, 'secondWindow', features);  
  // give the new window focus
  newWindow.window.focus();

}

-->
