function GrossBildGrau (jpg,descr) {
	document.close()
	document.open();
	document.write('<HEAD>');
	document.write('<title>Explorer Magazin</title>');
	document.write('</HEAD>');
	document.write('<BODY  bgcolor="CCCCCC" link="#800000" vlink="#800000">');
	document.write('<p align="center">');
	document.write('<img border="0" src=' + jpg + ' align="center">');
	document.write('</p>');
	document.write('<p align="center">' + descr + '</p>');
	document.write('</BODY>');
	document.close();
}
function GrossBildSand (jpg,descr) {
	document.close()
	document.open();
	document.write('<HEAD>');
	document.write('<title>Explorer Magazin</title>');
	document.write('</HEAD>');
	document.write('<body bgcolor="#FFFFFF" link="#800000" vlink="#800000" background="../exptextb.jpg">');
	document.write('<p align="center">');
	document.write('<img border="0" src=' + jpg + ' align="center">');
	document.write('</p>');
	document.write('<p align="center">' + descr + '</p>');
	document.write('</BODY>');
	document.close();
}
function GrossBildRahmen (jpg,descr) {
	document.close()
	document.open();
	document.write('<HEAD>');
	document.write('<title>Explorer Magazin</title>');
	document.write('</HEAD>');
	document.write('<BODY  bgcolor="CCCCCC" link="#800000" vlink="#800000">');
	document.write('<div align="center">');
	document.write('<table border="0" cellpadding="5" cellspacing="10" id="table1">');
	document.write('<tr>');
	document.write('<td>');
	document.write('<div align="left">');
	document.write('<table border="5" cellpadding="5" cellspacing="5" id="table2">');
	document.write('<tr>');
	document.write('<td>');
	document.write('<img border="0" src=' + jpg + ' align="center"></td>');
	document.write('</tr>');
	document.write('</table>');
	document.write('</div>');
	document.write('</td>');
	document.write('</tr>');
	document.write('</table>');
	document.write('</div>');
	document.write('<p align="center">' + descr + '</p>');
	document.write('</BODY>');
	document.close();
}
