// JavaScript Document
function newWindow(winPage, winName, winWidth, winHeight, scroll) {
	var winLeft = (screen.width - winWidth) / 2;
	var winTop = (screen.height - winHeight) / 2;
	var winProbs = 'height='+winHeight+',width='+winWidth+',top='+winTop+',left='+winLeft+',scrollbars='+scroll+',resizable,locationbar=no,statusbar=no';
	document.title='';
	win = window.open(winPage, winName, winProbs)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
