//**********************************************************************
//                                                                      
//  Copyright (c) 2001 Paul Rubin, Roswell, GA                          
//  as an unpublished work.  All rights reserved.                       
//                                                                      
//  This program is owned by Paul Rubin                             
//                                                                      
// *********************************************************************
var win = null;
function newPageWindow(myPage, w, h, scroll){
	if (win != null && !win.closed) {
		win.close();
	}
	if (screen.width && w >= screen.width) w = screen.width;
	if (screen.height && h >= screen.height) h = screen.height;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	if (w == screen.width) w = screen.width - (screen.width / 60);
	if (h == screen.height) h = screen.height - (screen.height / 7.5);
	settings = 'height=' + h + ',width=' + w
	   + ',top='+TopPosition+',left='+LeftPosition+',scrollbars=' + scroll + ',resizable';
	win = window.open(myPage,"pageView",settings);
	win.focus();
	return false;
}
