function SetHover($Object)
{
$Object.className = 'HoverCell';
}

function ResetHover($Object)
{
$Object.className = '';
}


function ClickMe($Object)
{
$Object.firstChild.click();
}

function ShowPic($Name, $ID, $Vater)
{
document.getElementById('TierPic').src = '/images/content/vermittlung/' + $ID + '/' + $Name;
document.getElementById('TierShow').style.visibility = 'visible';
}

function HidePic()
{
document.getElementById('TierPic').src = '/images/progress.gif';
document.getElementById('TierShow').style.visibility = 'hidden';
}

function ShowDoners($Titel, $Projekt)
{
$Url = '/common/donations.php?titel=' + $Titel + '&proj=' + $Projekt;
window.open($Url, "Spender", "dependent=yes, height=300px, width=200px, location=no, menubar=no, scrollbars=yes, toolbar=no, status=no");
}