<!---


function ViewBigPano(url)
{

  avWidth  = parseInt(screen.width);
  avHeight = parseInt(screen.height);

  w = 500;
  h = 350;

  l = avWidth-w-50;
  t = 50;

  winname   = 'ViewBigPano'+w+h;
  winparams = 'location=no,directories=no,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=no,resizeable=no';
  winparams = winparams + ',width='+w+',height='+h+',top='+t+',left='+l;

  view_big_pano_window = null;
  view_big_pano_window = window.open(url,winname,winparams);

  if (view_big_pano_window!=null)
  {
    view_big_pano_window.focus();
    view_big_pano_window.opener = self;
  }


}


function Hinweis()
{

	avWidth  = parseInt(screen.width);
	avHeight = parseInt(screen.height);

	w = 450;
	h = 350;

	l = avWidth-w-50;
	t = 10;

	URL = "hinweis.html";

	hinweis_window = null;
	hinweis_window = window.open(URL,'hinweis'+w+h,'location=no,directories=no,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=yes,resizeable=yes,width='+w+',height='+h+',top='+t+',left='+l);

	if (hinweis_window!=null)
	{
		hinweis_window.focus();
		hinweis_window.opener = self;
	}
	

}

// --->

