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

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

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

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

function ChangeArtikelPic($Bild)
{
$Object = document.getElementById('ProduktBild');
$Object.src = '/common/Thumb.php?file=' + $Bild + '&x=550';
}

function CloseErrorDiv()
{
document.getElementById('ErrorDiv').style.visibility = 'hidden';
}

function Setup()
{
document.forms['Suchform'].Query.focus();
}