/*--- 
************************************************************************************************

@name			js_PopUp.js

@description  	this module creates a pop-up window using link, width, height, and toolbar 
				(boolean) parameters.
				
									 
@author			john dugan
@authoremail	john.dugan@weberize.com

@copyright		Copyright (c) 2000 by Weberize.  All rights reserved.
@date			12/31/2000
				
************************************************************************************************
---*/



function PopUp(link,width,height,toolbar) {

	newWindow = window.open(link,'popup','width=' + (width + 0) + ',height=' + (height + 0) + ',toolbar=' + toolbar + ',location=0,directories=0,status=0,menubar=1,scrollbars=yes,resizable=yes');

	return false;

}
