function bookmark_me()
{
var url="http://...";
var title="...";
var browser=navigator.appName;
if(browser=="Microsoft Internet Explorer")
{window.external.AddFavorite(url,title);}
else
{alert("bitte STRG + D drücken,\n" + "um Lesezeichen zu setzen !");}
}

function logout()
{
top.location.href="../index.php";
}

function homepage()
{
if(document.all)
{
document.all.start.style.behavior="url(#default#homepage)";
document.all.start.setHomePage('http://...');
}
else
{alert("Ihr Browser unterstützt diese Funktion leider nicht !");}
}

function highlight(name,farbe)
{
if(document.getElementById)
{
document.getElementById(name).style.backgroundColor=farbe;
}}

function zoomIt(feld,wert)
{
if(document.getElementById)
{
document.getElementById(feld).style.height=wert + "px";
}}

var untermenue=new Array("produkte");
var status=false;
function show(i)
{
if(status==false)
{
reset_all();
document.getElementById(untermenue[i]).style.display="block";
status=true;
}
else
{
reset_all();
status=false;
}
}

function reset_all()
{
for(i=0;i<untermenue.length;i++)
{
document.getElementById(untermenue[i]).style.display="none";
}
}

function highlight(name,farbe)
{
if(document.getElementById)
{
document.getElementById(name).style.backgroundColor=farbe;
}}

function zoomIt(feld,wert)
{

if(document.getElementById)
{
document.getElementById(feld).style.height=wert + "px";
}
}

function win_auf(url,breit,hoch,scroll)
{
var fenster = window.open(url, "", 'width='+breit+',height='+hoch+',scrollbars='+scroll);
}


function gallery_win_open()
{
var fenster = window.open("galerie.php","Galerie","width=700,height=470,left="+ (screen.availWidth - 700)/2 +",top="+ (screen.availHeight - 470)/2 +",scrollbars=no,resize=no");
}
