if(top!=self)
top.location=self.location;

function fenster(Pfad,Breite,Hoehe,X,Y)
{
var pop;
pop=window.open(Pfad,'Fenster',"width="+Breite+",height="+Hoehe+",scrollbars=yes");
pop.moveTo(X,Y);
pop.focus();
}

function fenster2(Pfad,Breite,Hoehe,X,Y)
{
var pop;
pop=window.open(Pfad,'Fenster',"width="+Breite+",height="+Hoehe+",scrollbars=no");
pop.moveTo(X,Y);
pop.focus();
}

Normal1 = new Image();
Normal1.src = 'bilder/1.gif';
Highlight1 = new Image();
Highlight1.src = 'bilder/2.gif';

function bildwechsel(Name,Bildobjekt)
{
window.document.images[Name].src = Bildobjekt.src;
}

function Go(x){
if(x == "nothing")
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
}
else
{
fenster2(x,340,260,225,150);
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
}
