var isWindow;
function OpenWindow(seite,breite,hoehe,res,scroll,menu,tool)
{
	var text = "width=" + breite + ",height=" + hoehe + ",status=no,resizable=" + res + ",scrollbars=" + scroll + ",menubar=" + menu + ",toolbar=" + tool;
	isWindow = window.open(seite, "WINDOW", text);
	isWindow.focus();
	return;
}
function OpenExtraWindow(seite,breite,hoehe,res,scroll,menu,tool)
{
	var text = "width=" + breite + ",height=" + hoehe + ",status=no,resizable=" + res + ",scrollbars=" + scroll + ",menubar=" + menu + ",toolbar=" + tool;
	isWindow = window.open(seite, "EXTRA", text);
	isWindow.focus();
	return;
}

function WinZip()
{
	window.open("http://www.winzip.de/downwz.htm", "WINZIP", "width=700,height=500,resizable=yes,scrollbars=yes");
	return;
}

function Acrobat()
{
	window.open("http://www.adobe.de/products/acrobat/readstep.html", "ACROBAT", "width=700,height=500,resizable=yes,scrollbars=yes");
	return;
}
function FlashPlugin()
{
	window.open("http://www.macromedia.com/de/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash", "FlashPlugin", "width=700,height=500,resizable=yes,scrollbars=yes");
	return;
}
function Powerpoint()
{
	window.open("http://www.microsoft.com/downloads/details.aspx?familyid=048DC840-14E1-467D-8DCA-19D2A8FD7485&displaylang=de", "POWERPOINT", "width=700,height=500,resizable=yes,scrollbars=yes");
	return;
}


neues_Fenster = null;
function ZeigeBild(xTitel, xBild, xBreite, xHoehe)
{
	Titel = xTitel;
	Bild = xBild;
	Breite = xBreite;
	Hoehe = xHoehe;
	Oben = (screen.height)?(screen.height-Hoehe)/2:0;
	Links = (screen.width)?(screen.width-Breite)/2:0;
	zu();
	sichtbar();
}
function sichtbar()
{  
	Fenster_Hoehe = Hoehe;
	Fenster_Breite = Breite;
	Left_Position= Links;
	Top_Position= Oben;
	Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,height='+Fenster_Hoehe+',width='+Fenster_Breite+',top='+Top_Position+',left='+Left_Position;
	neues_Fenster = window.open('','',Optionen)
	with (neues_Fenster) 
	{
		document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></HEAD>');
		document.writeln('<BODY bgcolor="#FFFFFF" leftmargin="0" rightmargin="0" topmargin="0" marginwidth="0" marginheight="0"><DIV ALIGN=CENTER><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE"><TR><TD>');
		document.writeln('<IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0></TD>');
		document.writeln('</TR></TABLE></DIV></BODY></HTML>');
	}
}
function zu()
{
	if (neues_Fenster != null)
		if (!neues_Fenster.closed)
			neues_Fenster.close();
}