function bigpic(datei,text,breite,hoehe)
{	

  if(parseInt(breite) >= 800)
  {
    breite = parseInt(breite) + 17;
  }
	if(text != "")
	{
	 hoehe = parseInt(hoehe) + 50;
  }
	vorschau = window.open("bildansicht.php?bild="+datei+"&text="+text+"", "winbild", "width="+breite+",height="+hoehe+",scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,directories=no");
  vorschau.focus();	
}

function open_stkl()
{
	fenster = window.open('stueckliste.php','stkl','width=800,height=500,scrollbars=yes,menubar=no,statusbar=no');
	fenster.focus();
}

function open_hilfe()
{
	fenster = window.open('hilfe.php','stkl','width=460,height=250,scrollbars=no,menubar=no,statusbar=no');
	fenster.focus();
}


var printWindow;
function open_printWindow()
{
  if(printWindow) { printWindow.close(); printWindow = null; }
  var produktID = parent.document.getElementById('produkt_alt').value;
  var popupLink = "artikel_print.php?produkt="+produktID;
  printWindow = window.open(popupLink,'print','width=750,height=500,resizable=yes');
}

function toggleLayer(ID)
{
	if(document.getElementById(ID).style.display == "none")
	{
    document.getElementById(ID).style.display = 'block';
  }
  else
  {
    document.getElementById(ID).style.display = 'none';
  }
}
