function OpenPopup(nURL, MsgTitle)
{
	var winPopup = window.open(nURL, MsgTitle, 'top=50,left=200,height=500,width=600,scrollbars=yes,toolbar=no,resizable=yes');
	if (!(winPopup)) 
	{
		alert("If you are using a browser-based pop-up blocker, it is preventing you from seeing the link you've just selected. Please reconfigure your pop-up blocker to allow pop-ups from this site.");
	} else {
		winPopup.focus();
	}
}
