// FAQ-Script

function displayfaq(id) {
	for (i=0;i<questions.length;i++) {
		document.getElementById('question_'+questions[i]).style.display='none'
	}
	document.getElementById('question_'+id).style.display='block'
}


function getAdr(prefix, postfix, lnkparam) {
        document.write('<a ' + lnkparam + ' href="mailto:' + prefix + '@' + postfix + '">' + prefix + '@' + postfix + '</a>');
}
