/*=========================================================*/
//	Modulname	:	impres.js
//	Versions-Nr	:	1.0
//	Revision-Stand	:	2
//	Author		:	Manfred Zellner
//	Aufgabe		:	Ausgeben der Informationen bzügl. 
//				:	Impressum und Disclaimer
//	Framename		:	-
//	Funktionen		:	- Impressum(Ausgeben in
//					  eigenem Window)
//	Einsatz (D/OT/P)	:	manes-wildstar.de
//	History/Datum	:	10.11.06
//				:	27.11.07 (Adresse geändert)
/*=========================================================*/

function Impressum() 
{
	ImpWin=window.open("","DisplayWindow","resizable=no,toolbar=no,directories=no,menubar=no,scrollbars=no,width=410,height=340")
	ImpWin.document.open();
	ImpWin.document.write("<head><title>mane's wild star: Impressum</title>");
	ImpWin.document.write("<style type='text/css'>td{ font-family: Tahoma,Arial; font-size: 10pt; color: #0000D7; } a:link { font-family: Verdana; font-size: 10pt; color:#D70000; text-decoration:none; } a:visited { font-family: Verdana; font-size: 10pt; color:#ff0000; text-decoration:none; } a:active { font-family: Verdana; font-size: 10pt; color:#ff0000; text-decoration:none; } </style>");
	ImpWin.document.write("</head><body bgcolor='#ffffff' topMargin='0' MARGINHEIGHT='0' MARGINWIDTH='0'>");
  
	ImpWin.document.write("<div id='impressum' style='position: absolute; top: 20px; left: 20px; width: 385px; height: 290px; z-index: 1;'>");
	ImpWin.document.write("<table border='0' cellpadding='0' cellspacing='0' width='374' height='101'>");
	ImpWin.document.write("<tr><td valign='top' align='center'><a href='javascript:window.close()'><img src='image/logo2-imp.gif' width='372' height='99' border='1'></a></td></tr></table>");
	ImpWin.document.write("<table border='0' background='image/imp_bg.gif' cellpadding='6' cellspacing='2' width='374' height='185'><tr><td>&nbsp;</td><td><b>Impressum&nbsp;&nbsp;&nbsp;manes-wildstar.de</b></td></tr>");
	ImpWin.document.write("<tr><td>&nbsp;</td><td>Manfred Zellner<br>Platanenstr. 37<br>86899 Landsberg am Lech <br>Deutschland<p>");
	ImpWin.document.write("Telefon: ++49 (0)8191-4018259 <br>e-mail: <a href='mailto:mane@manes-wildstar.de'>mane@manes-wildstar.de</a></td></tr></table>");
	ImpWin.document.write("<table border='0' cellpadding='0' cellspacing='0' width='367' height='30'>");
	ImpWin.document.write("<tr><td>Copyright&nbsp;&copy;&nbsp; 2006&nbsp;&nbsp;&nbsp;Manfred Zellner</td></tr></table></div>");
	ImpWin.document.writeln("</body>");
	ImpWin.document.close();
}
