function winPopUp(sUrl, sTitle, sWidth, sHeight) {
	leftPos = (screen.width - sWidth) / 2;
	topPos = (screen.height - sHeight) / 2;
	winProps = 'height='+sHeight+',width='+sWidth+',top='+topPos+',left='+leftPos+',scrollbars=no';
	window.open(sUrl,sTitle,winProps);
}
