// Zeigt oder versteckt einen Navigationspunkt
function toggleNavigation(id)
{
	if(document.getElementById('navigation_' + id).style.display != "none") {
		document.getElementById('navigation_' + id).style.display = "none";
	} else {
		document.getElementById('navigation_' + id).style.display = "";
	}
}

//Lässt die Bildernavigation arbeiten
function showPicturePage(id)
{

	lastNavigationID = document.formular.lastNavigationID.value;

	if(document.getElementById('pictureNavigation_' + id).style.display!="")
	{
		document.getElementById('pictureNavigation_' + id).style.display = "";
		document.getElementById('pictureNavigation_' + lastNavigationID).style.display = "none";
		
		document.formular.lastNavigationID.value = id;
	}
}

function ViewImage(ifile, iwidth, iheight, text)
{
  var win;
  var settings;
  
  iwidth = iwidth + 50;
  iheight = iheight + 50;

  win = window.open("", "imageviewer", "width="+iwidth+",height="+iheight+",menubar=no,toolbar=no");

  win.document.open();
  win.document.write("<html>\n<head>\n<title>Bilder der Kisker-Brennereien</title>\n");
  win.document.write("<link rel='stylesheet' type='text/css' href='./css/style.css' />\n");
  win.document.write("</head>\n\n");
  win.document.write("<body style='padding: 0px; margin: 0px'>\n");
  win.document.write('<div align="center"><br />\n');
  win.document.write('<a href="#" onclick="self.close()"><img src="http://www.kisker-brennereien.de/images/smallPictures/'+ifile+'" border="0" alt="'+text+'" title="'+text+'"></a><br />\n');
  win.document.write('<br />\n');
  win.document.write('<span style=\"color: #000000\">klicken Sie auf das Bild um das Fenster zu schließen</span>\n');
  win.document.write('</div>\n\n');
  win.document.write('</body>\n</html>');
  win.document.close();
}

function ViewTechnischeDaten(id)
{
  window.open("technischedaten.php?id=" + id, "technischeDaten", "width=500,height=250");
}

function ViewAnfahrtDetails()
{
  var win;
  var sWidth;
  var sHeight;
  win = window.open("", "imageviewer","width=550,height=550, menubar=no,toolbar=no");

  win.document.open();
  win.document.write("<html>\n<head>\n<title>Anfahrtdetails der Kisker-Brennereien</title>\n");
  win.document.write("<link rel='stylesheet' type='text/css' href='./css/style.css' />\n");
  win.document.write("</head>\n\n");
  win.document.write("<body style='padding: 0px; margin: 0px'>\n");
  win.document.write('<div align="center"><br />\n');
  win.document.write('<a href="#" onclick="self.close()"><img src="images/anfahrt_details.png" border="0" alt=""></a><br />\n');
  win.document.write('<br />\n');
  win.document.write('<span style="color: #000000">klicken Sie auf das Bild um das Fenster zu schließen</span>\n');
  win.document.write('</div>\n\n');
  win.document.write('</body>\n</html>');
  win.document.close();
}

// Zeigt oder versteckt eine Download-Kategorie
function showDownloads(id)
{
	if(document.getElementById('downloads_' + id).style.display != "none") {
		document.getElementById('downloads_' + id).style.display = "none";
	} else {
		document.getElementById('downloads_' + id).style.display = "";
	}
}

function ViewImpressum()
{
  window.open("impressum_popup.php", "Impressum", "width=700,height=800,scrollbars=yes");
}