function NeuFenster(Datei,b,h)
{
 if(screen.width < b)
  b = screen.width-20
 if(screen.height < h)
  h = screen.height -20

  parameter="Width="+b+",Height="+h+",screenX=10,screenY=10,resizable=1,toolbar=0,directories=0,status=0,menubar=0,copyhistory=0,scrollbars,dependent=1";
  Bilder = window.open(Datei,"Bilder",parameter);
  Bilder.focus();
 }


function MakeArray(n) 
{
		this.length = n
		for (var i = 0; i<=n; i++) 
		{
		   this[i] = new Image()
		}
		return this
}

function msover(pic,num,txt)
{
	if ( browser) 
	{ 
		document.images[pic].src = sel[num].src
		window.status = text[txt]
		
	}
}

function msout(pic,num) 
{
	if ( browser) 
	{
	document.images[pic].src = unsel[num].src
	window.status = text[0]
	}                   
}

