
function Go (x) {

testurl = "http://www.pool-x.de/" + x

//alert("testurl = "+testurl+"\nthis.location.href = " + this.location.href )

if(testurl!=this.location.href){
  if (x == "nothing") {
    document.forms[0].reset();
    document.forms[0].elements[0].blur();
    return;
  } else {
    if (x == "end") {
      top.location.href = parent.frames[1].location;
      
    } else {
    
      this.location.href = x;
      document.forms[0].reset();
      document.forms[0].elements[0].blur();
    }
  }
}
}


function setBild (welchesbild, neuesbild){


	if (welchesbild)
		{
				zuwechseln = String(welchesbild);
				
				eval('document.' + zuwechseln + '.src = "' + neuesbild + '"');
		}
}


