function popup(url,name,einstellungen)
{
	window.open(url,name,einstellungen);
}


function klapp()
{
//	NS4Plus = (document.layers) ? 1 : 0;
//	IE4Plus = (document.all) ? 1 : 0;

	if (document.layers) {
		window.innerWidth=document.images[0].width+50;
		window.innerHeight=document.images[0].height+250;
	}
	if (document.all) {
// The script must be inside the body tags - there is no body in the head of the document
		document.body.offsetWidth=document.images[0].width;
		document.body.offsetHeight=document.images[0].height;
		top.document.body.clientHeight=document.images[0].height;
		// objekt unterstuetzt diese funktion nicht... read-only-attribut :/ 
	}
	self.innerWidth=document.images[0].width+24;
	self.innerHeight=document.images[0].height+24; 
}

function snip()
{
	self.resizeTo(screen.availWidth,screen.availHeight);
	window.moveTo(0,0)
}
