<!--
function openMap(filename,sizex,sizey)
{
	document.store_value.picture.value = 'bilder/'+filename;
	document.store_value.hoehe.value = sizey;
	document.store_value.breite.value = sizex;
	winheight = parseInt(sizey)+54;
	winwidth = parseInt(sizex)+10;
	var parameter_string = 'width='+ winwidth +',height='+ winheight +',directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes,left=0,top=0,screenx=0,screeny=0';
	//alert(filename);
	map = window.open('container.html','new_window',parameter_string);
	map.focus();
}
//convenience script for NN 4.7 only
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->