function windowopen(theurl,breite,hoehe){
	txt='width='+ breite +' height='+ hoehe;
	window.open(theurl,'popup',txt);
	}
function schliessen(){
window.close();
}
<!--
var werbung = new Array();
werbung[0] = new werbeeinblendung("../images/delta2.jpg","");
werbung[1] = new werbeeinblendung("../images/mysterypark1.jpg","");
werbung[2] = new werbeeinblendung("../images/mysterypark2.jpg","");

function werbeeinblendung(bildurl,text)
{
this.text = text;
this.bild = new Image();
this.bild.src = bildurl;
}
function animiere_werbung(einblendung)
{
if (einblendung > werbung.length-1) einblendung=0;
self.document.werbebild.src=werbung[einblendung].bild.src;
timeOutString="animiere_werbung("+(einblendung+1).toString()+")";
window.defaultStatus = werbung[einblendung].text;
timerId=setTimeout(timeOutString,3000);
}


//-->