
var bolChild 	= false;
var bolOpened 	= false;
var intTimerID 	= 0;
var newWin 		= null;
function fnOpen(strURL) {
	bolChild = false;
	if (newWin) { if (!newWin.closed) { bolChild = true; } }
	if (!bolChild) { intTimerID = window.setTimeout('fnPopupAlert()', 3000); }
	newWin = window.open(strURL, 'new', 'width=800,height=600,scrollbars=1,resizable=1');
	if (!newWin.opener) { newWin.opener = self; }
	newWin.focus();
}
function fnPopupAlert() {
	if (!bolOpened) {
		window.focus();
		alert('It appears that the new window did not open.\n\nYou may have a pop-up blocker enabled,\nwhich prevents new windows from opening.\n\nPlease disable any popup-blocking settings or software\nwhile using this website and try clicking the link again.');
	}
	bolOpened = false;
	window.clearTimeout(intTimerID);
}
