function openImage(bild,b,h) {
	var breite = b;
	var hoehe = h;

	if(breite > hoehe) {

		if(breite > 600) {breite = 600;}
		if(hoehe > 400) {hoehe = 400;}

	}else if(breite < hoehe) {

		if(breite > 400) {breite = 400;}
		if(hoehe > 600) {hoehe = 600;}

	}else if(breite == hoehe) {

		if(breite > 500) {
			breite = 500;
			hoehe = 500;
		}
	}

	
	var image = window.open("", "", "width="+breite+", height="+hoehe);

	if(image!=null) {
		var i = image.document;
		i.open();
			i.write("<html><head><title>" + bild + "</title></head><body>");
			i.write("<img src='" + bild + "' style='position: absolute; left: 0px; top: 0px;' width="+breite+"; height="+hoehe+"; onclick='javascript:window.close();'>");
			i.write("</body></html>");
		i.close();
	}
}



function bericht(id,popup) {
	if(popup) {
		window.open("bericht.php?id="+id+"&popup=1", "bericht", "height=700, width=750, scrollbars");		
	}else{
		this.location = "bericht.php?id="+id;
	}
}


function data(id) {
	this.location = "daten.php?id="+id;
}
