function oeffnen()
{
Fenster = window.open('', 'Fenster', 'width=50,height=50,left=900,top=600,resizable=yes,scrollbars=yes')
window.setTimeout("move_to_right()",2000);
window.setTimeout("move_to_top()",2000);
window.setTimeout("move_to_right2()",2000);
}
function move_to_right()
{
	for(i=899;i>=400;i--)
	{
		Fenster.moveTo(i,600);
	}
}
function move_to_top()
{
	//a = a + a;
	for(j=599;j>=0;j--)
	{
		Fenster.moveTo(i,j);		
	}
}
function move_to_right2()
{
	//a = a + a;
	for(k=399;k>=0;k--)
	{
		Fenster.moveTo(k,j);		
	}
	setTimeout("breitmachen();",1000);
	Fenster.location.href="reservierung_email.php";
}

function breitmachen()
{
	sw = screen.width/5*4; sh = screen.height-50;
	for(i=50;i<sw;i++)
	{
	Fenster.resizeTo(i,50);
	}
	for(j=50;j<sh;j++)
	{
	Fenster.resizeTo(i,j);
	}
}
////////////////////////////////////////
function wieder_schliessen()
{
	for(ii=sw;ii>0;ii--)
	{
	Fenster.resizeTo(ii,sh);
	}
	
	for(jj=sh;jj>0;jj--)
	{
	Fenster.resizeTo(ii,jj);
	}
	/**/
	self.close();
}
