// Open Pop-Out Window
function winCenterOpen(theURL, Name, popW, popH, scroll)
{
	var leftJustification = (screen.width - popW) / 2;
	var topJustification = (screen.height - popH) / 2;

	winProperties = 'width='+popW+',height='+popH+',left='+leftJustification+',top='+topJustification+',scrollbars='+scroll+'';

	Win = window.open(theURL, Name, winProperties);

	if (parseInt(navigator.appVersion) >= 4)
	{
		Win.window.focus();
	}
}
