/*	
 *	gs_new_window.js MUST BE Loaded !!!
 */

var gpopwin2 = new gsNewWindow( "pop_win" );

with ( gpopwin2 ) {

/*	
*	This is where you control the window attributes.
 */

	copyhistory = false;
	directories = false;
	location    = false;
	menubar     = false;
	resizable   = true;
	scrollbars  = true;
	status      = false;
	toolbar     = false;

	left = 0;
	top  = 0;

/*	
*	This is where you control the window size.
 */
	width  = 426;
	height = 450;

	centered = true; // IF (true) then left and top are ignored
}
