//Bildergalerie
function showBild(verzeichniss, bild) 
{
	var refWindow = window.open("","referenzen","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,dependent=1, width=550,height=450");
	with(refWindow.document)
	{
	open("text/html");
    writeln('<html><head><title>Hip Hop Days</title><body bgcolor="#AA9FAA" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	writeln('<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0">');
	writeln('<tr><td align="center" valign="middle">');
	writeln('<table cellspacing="0" cellpadding="5" border="0"><tr><td bgcolor="#FFFFFF">');
	writeln('<img src="'+verzeichniss+'/img/' +bild+ '.jpg" border=0">');
	writeln("</td></tr></table></td></tr></table>");
    writeln("</body></html>");
	close();
	}
	refWindow.focus()
}

function newWindow() 
{
var newWindow=window.open("","newWindow","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1");
newWindow.focus();
}

function windowErgebnis() 
{
var ergebnis=window.open("","ergebnis","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=600,height=500");
ergebnis.focus();
}
