neues_fenster = null;

function foto(Bild0)
	{
	Bild = 'images/' + Bild0 + '.jpg';
	zu();
	setTimeout('sichtbar()',1000);
	}

function sichtbar()
	{
	neues_fenster = window.open('', '', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, height=538, width=532');
	with (neues_fenster)
		{
		document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
		document.writeln('<html><head>');
		document.writeln('<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">');
		document.writeln('<title>leyla.ch</title>');
		document.writeln('</head>');
		document.writeln('<body bgcolor="black" leftmargin="10" marginheight="10" marginwidth="10" topmargin="10">');
		document.writeln('<table border="0" cellpadding="1" cellspacing="0" width="512" height="512">');
		document.writeln('<tr height="510">');
		document.writeln('<td width="510" height="510" bgcolor="#996600">');
		document.writeln('<table border="0" cellpadding="5" cellspacing="0" width="510" height="510" bgcolor="black">');
		document.writeln('<tr>');
		document.writeln('<td><img src="'+Bild+'" widht="500" height="500" border="0" alt="leyla.ch"></td>');
		document.writeln('</tr>');
		document.writeln('</table>');
		document.writeln('</td>');
		document.writeln('</tr>');
		document.writeln('</table>');
		document.writeln('</body></html>');
		moveTo(20,20);
		document.close();
		}
	}

function zu()
	{
	if (neues_fenster != null)
	if (!neues_fenster.closed)
	neues_fenster.close();
	}

