function OpenWindow(path, title)
{
	var eigenschaften="screenX=100,screenY=100,width=270,height=300,menubar=no,resizable=yes,scrollbars=no";
	window.open(path,title,eigenschaften);
}

function OpenWindowBig(path)
{
	var eigenschaften="screenX=50,screenY=50,width=890,height=450,menubar=no,resizable=yes,scrollbars=no";
	window.open(path,"Donau-Touristik",eigenschaften);
}

function OpenWindowHotel(path, title)
{
	var eigenschaften="screenX=100,screenY=100,width=470,height=700,menubar=no,resizable=yes,scrollbars=no";
	window.open(path,title,eigenschaften);
}

