function newWin(vURL, popWidth, popHeight) {
	var popX = (screen.availWidth - popWidth) / 2;
	var popY = (screen.availHeight - popHeight) / 2;
	window.open(vURL,'_blank','width=' + popWidth + ',height=' + popHeight + ',resizable,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,screenX=' + popX + ',screenY=' + popY + ',left=' + popX + ',top=' + popY);
}
