// JavaScript Document


function popup (url1,breite, hoehe ) {
	var hoehe1 = hoehe;
	var breite1=breite;
	var a = "width=" + breite + ", height=" + hoehe1 + "resizable=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,toolbar=0";
	
	foto = window.open(url1, "_blank", a);
	
}
