/*	Name:		Brauer Productions JS Window Popup	Type:		Object	Created:	05/01/2005	Updated:	05/01/2005	Version:	1.0	Updates:		Author:		Scott A. Ash	Copyright:	Scott Ash	Functions:	init()								.init()				The main constructor for this object. Accepts two arguments in this order:					- url					- title				The window opens with no menubar, a side scroll, no status bar, a width of 250 and				a height of 400. Most of these settings can be changed using the following member 				function setwin().					Uses:		nothing	Required:	nothing					Settings:	None*/function bpi_window_popup(){// properties	this.tall;	this.wide;	this.url;	this.titl;	this.settings;		// methods	this.init = init;	this.setwin = setwin;	this.popwin = popwin;	//aler('!');	// constructor	function init(u,t)	{			this.setwin(400,250,u,t);				this.url = u;		this.titl = t;	}	// member functions	function setwin(t,w,u,i)	{		if(typeof t != 'undefined')		{			this.tall = t;		}				if(typeof w != 'undefined')		{			this.wide = w;		}				if(typeof u != 'undefined')		{			this.url = u;		}				if(typeof i != 'undefined')		{			this.titl = i;		}				this.settings = 'location=no,directories=no,resizale=no,toolbar=no,menubar=no,scrollbars=yes,width=' + this.wide + ',height=' + this.tall + ',status=no';	}		function popwin()	{		var mywin = window.open(this.url,this.titl,this.settings);	}}	
