//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
//
//	THIS SCRIPT IS FREE FOR EVERYBODY
//
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//

function largeImage(img, desc) {
	largeImage(img, desc, 645, 580);
}

function largeImage(img, desc, wWidth, wHeight) {

	w = window.open('', 'bild', 'alwaysRaised=1,toolbar=0,status=0,location=0,directories=0,menubar=0,resizable=1,scrollbars=0,width='+wWidth+',height='+wHeight);
	w.document.open();
	w.document.writeln('<head><LINK REL="StyleSheet" HREF="css/basic.css" type="text/css"></head>\n');
	w.document.writeln('<BODY  style="background-image: none; background: black;" onload="Javascript:self.moveTo((screen.width-'+wWidth+')/2,(screen.height-'+wHeight+')/2)" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	w.document.writeln('<TABLE border="0" height="100%" width="100%" cellpadding="0" cellspacing="0">');
	w.document.writeln('  <TR><TD valign="middle">');
	w.document.writeln('    <TABLE border="0" cellpadding="0" cellspacing="0" align="center">');
	w.document.writeln('      <TR>');
	w.document.writeln('        <TD><A HREF="JavaScript:window.close();"><img src="'+img+'" border="0" alt="Klick schließt Fenster"></A></TD>');
	w.document.writeln('      </TR>');
	w.document.writeln('      <TR><TD>');
	w.document.writeln('        <TABLE width="100%" style="background: black; color: #CFCFCF; padding-top: 10px" border="0" cellpadding="0" cellspacing="0" align="center">');
	w.document.writeln('          <TR><TD>');
	w.document.writeln('            '+desc+'</TD>');
	w.document.writeln('          </TR>');
	w.document.writeln('        </TABLE></TD>');
	w.document.writeln('      </TR>');
	w.document.writeln('    </TABLE></TD>');
	w.document.writeln('  </TR>');
	w.document.writeln('  </TABLE>');
	w.document.writeln('</BODY>');
	w.document.close();

};
