<!--
// PopupWindow script by Ben Lawson (c)2000 webmaster@sunspotphoto.com
// Use freely, but do not remove these credits.

// TO USE:  Add the following to each <A> tag that needs a popup window:
//		TARGET="newWindow"
//		onClick="makeWin(this.href,width,height,scrolling)"
// Substitute the required height and width in pixels, and 0 (Zero) for "no" or
// 	1 (One) for "yes" for the scrolling option.
// EXAMPLE: makeWin(this.href,250,200,0)

var Popup_URL = "";
var winH;
var winW;
var winScroll;
function makeWin(Popup_URL,winW,winH,winScroll){
var winAtt = "height=" + winH + ",width=" + winW + ",scrollbars=" + winScroll + ",status=0,menubar=0,resizable=0"
// open the popup window
var popup =
window.open(Popup_URL,"newWindow",winAtt);

// set the opener if it's not already set.  it's set automatically in netscape 3.0+ and ie 3.0+.
   if( navigator.appName.substring(0,8) == "Netscape" ){
      popup.location = Popup_URL;
   }
}
// -->
