function documentLinkPopup(dlURl, dlName, dlOptions){
	window.open(dlURl, dlName, dlOptions);
}

function showLeaveSiteWarning(str_URL, bol_newWindow, str_message) {
	alert (str_message);
	if(bol_newWindow == '' || bol_newWindow == 'false'){
		document.location.href=str_URL;
	}else{
		splashWin = window.open(str_URL,'newWindow', 'fullscreen=0,toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
	}

}

function openGlossaryWindow(str_word, str_currentLevel) {
	splashWin = window.open(str_currentLevel + 'library/scripts/glossaryEngine.asp?word=' + str_word,'glossary', 'width=200,height=200,fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1');
}