<!-- 
function mailGen(index)
{
	switch (index)
	{
		case 1:
			url = "mai"+"lto:"+"mail";
			url += "%40"+"sabine-czinczel.de";
		break;
				
		case 2:
			url = "mai"+"lto:"+"post";
			url += "%40"+"esszett.net";
		break;
		
		default:
			url = "";
		break;
	}
	
	if (url != "") location.href = url;
}

function change(id, newClass) {
identity=document.getElementById(id);
identity.className=newClass;
}

-->
