function openHelpWindow(theURL,winName,iWide, iHigh) {
	var LeftPos=(screen.width)?(screen.width-iWide)/2:100;
	var TopPos=(screen.height)?(screen.height-iHigh)/2:100;
	features= 'width=' + iWide + ',height=' + iHigh + ',top=' + TopPos + ',left=' + LeftPos + ',scrollbars=yes,resizable=yes,toolbar=yes';
	window.open(theURL,winName,features);
}
