/**
 * @author Sebastian Felling for Felling Software Development
 */
var spAuthenticated = false;

function archiveFireDownload(indexSort, url, title, strTargetLangCode) {
	if(spAuthenticated) {
		window.external.ModOnlineArchive_BrowserScript_FireDownload(indexSort, url, title, strTargetLangCode);
		return false;
	} else {
		return true;
	}
}

function UserAgentAuthenticate(strUserAgentName) {
	spAuthenticated = true;
}
