<!--
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

var userName = new Array();
  // insert the first part of the address below
  userName[0]="garage";
  userName[1]="garage";

var userNameFull = new Array();
  // Insert the name associated with the address
  // Important! Make sure the numbers line-up with the addresses above
  userNameFull[0]="Email direkt";
  userNameFull[1]="Email direkt";


// Insert the domain name portion of the address below
var siteName = "adibene.ch";

i=0;
do userName[i]='<a href=\"mailto:' + userName[i] + '@' + siteName + '\">' + userNameFull[i] + '</a>';
while(userName[++i])

function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onclick=hidestatus
document.onmouseout=hidestatus
// -->

