function tooltip (id,vorname,name,funktion) {
document.getElementById('output').innerHTML = '<table width="370" border="0" cellpadding="0" cellspacing="0" class="gross"><tr><td width="150" height="147"><img src=' + id + ' /></td><td width="10" valign="middle">&nbsp;</td><td width="210" valign="middle"><strong>'+ vorname +'&nbsp;'+ name +'<br><br>'+ funktion +'</strong><br><br><br><br><strong>Lorem GmbH </strong><br>Underm&uuml;listr. 22 <br>8320&nbsp;Fehraltorf <br><br>044 956 20 90 <br>044 956 20 99 <br><a href="mailto:info@lorem.ch">info@lorem.ch </a> </td></tr></table>';
document.getElementById('output').style.display = 'block';
}
function tooltipdown () {
//document.getElementById('output').style.display = "none";
}
