function newWindow ( page, wide, high) {
	xPosition=0; yPosition=0;
	if ( screen.width <= wide ) {
		size = 'yes';
		wide = screen.width - 10;
		high = high + 15;
		xPosition = 0;
		yPosition = 0;
	} else {
		size = 'no';
		xPosition = (screen.width - ( wide + 8 )) / 2;
		yPosition = (screen.height - high) / 2;
	}

	args = "width="+wide+"," 
	+ "height="+high+"," 
	+ "location=no," 
	+ "menubar=no,"
	+ "resizable="+size+","
	+ "scrollbars="+size+","
	+ "status=no," 
	+ "titlebar=no,"
	+ "toolbar=no,"
	+ "hotkeys=no,"
	+ "screenx=" + xPosition + ","  //NN Only
	+ "screeny=" + yPosition + ","  //NN Only
	+ "left=" + xPosition + ","     //IE Only
	+ "top=" + yPosition;           //IE Only
	
	thisWindow = window.open( page, 'new', args );
	thisWindow.focus();
}

