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 browser = navigator.appName;
function diashow()
{
i++;
if(i==pics.length)
{
i=0;
}
if(browser=="Microsoft Internet Explorer")
{
document.getElementById("bild").filters.blendTrans.Apply();
document.getElementById("bild").style.visibility = "visible";
document.getElementById("bild").filters.blendTrans.Play();
document.bild.src="pics_diashow/" + pics[i];
counter=setTimeout("diashow()",delay);
}
else
{
document.getElementById("bild").style.visibility = "visible";
document.bild.src="pics_diashow/" + pics[i];
counter=setTimeout("diashow()",delay);
}}

function win_auf(url,breit,hoch)
{
fenster = window.open(url,"","width=" + breit + ",height=" + hoch + ",left=100,top=100");
}
