<!--BEGIN Script
function showPopup(popFile,popWidth,popHeight) {
	thisLeft = (window.screen.width - popWidth) / 2;
	thisTop = (window.screen.height - popHeight) / 2;
	window.open(popFile,'1','width=' + popWidth + ',height= ' + popHeight + ',left=' + thisLeft + ', top=' + thisTop + ',toolbar=0,location=0,menu=0,scrollbars=0,resizable=0');
}
// End -->