function OpenGraphic (grafic, language, x, y)
{
  URL = "showGraphic.php?g=" + grafic + "&l=" + language + "&x=" + x + "&y=" + y;

	var breite = 250;
	var hoehe = 200;
	if (x > breite)	{ breite	= x; }
	if (y > hoehe)	{ hoehe		= y; }

  var fenster=window.open( URL , 'Informationen',
	'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,' +
	'screenX=20,screenY=20,width='+breite+',height='+hoehe+',focus=yes');

}


function OpenGraphic2(grafic, language,x,y)
{
  URL = "showGraphic.php?g=" + grafic + "&l=" + language + "&x=" + x + "&y=" + y;

  var fenster=window.open( URL , 'Informationen',
	'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,' +
	'screenX=20,screenY=20,width='+x+',height='+y);

  if(navigator.appName.substring(0,8)=="Netscape" ) {
	fenster.location=URL; }

}


function OpenPrint(grafic)
{
  URL = "print.php?a=" + grafic ;

  var fenster=window.open( URL , 'Informationen',
	'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,' +
	'screenX=20,screenY=20,width='+700+',height='+600);

  if(navigator.appName.substring(0,8)=="Netscape" ) {
	fenster.location=URL; }

}


function OpenPopup (aid)
{
  URL = "artikeldetail.php?a=" + aid;
 
  var fenster=window.open( URL , 'Artikeldetailansicht',
	'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,' +
	'screenX=20,screenY=20,width=900,height=650');

  if(navigator.appName.substring(0,8)=="Netscape" ) {
	fenster.location=URL; }

}


function OpenPopup2 (txt)
{
  URL = "popup.php?txt=" + txt;
 
  var fenster=window.open( URL , txt,
	'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,' +
	'screenX=20,screenY=20,width=900,height=650');

  if(navigator.appName.substring(0,8)=="Netscape" ) {
	fenster.location=URL; }

}