function initPage()
{
	if (window.location.search)
		requestData(window.location.search.replace("?",""), 'content');
	else	
		requestData('news', 'content');
}
function sendEmail(_address, _domain)	
{
	if (!_domain)
		_domain = "alumni-fhnw-technik.ch";

	location.href="mailto:" + _address + "@" + _domain;
}
function showEvent(_event)
{
	if (document.getElementById(_event).style.display == "none")
	{
		document.getElementById(_event).style.display = "block";	
		document.getElementById(_event + "Box").innerHTML = "Fotos und Text ausblenden...";
	}
	else
	{
		document.getElementById(_event).style.display = "none";	
		document.getElementById(_event + "Box").innerHTML = "Fotos und Text anzeigen...";
	}	
}
