// change image on mouse-over / mouse-leave
function roll_over(img_name, img_src)
{
   document[img_name].src = img_src;
}

// Hide email-address from spam-bots
function nospam(name,domain)
{
	window.location = 'mailto:' + name + '@' + domain;
}

