function PopUp(w,h,ziel)
{
	var URL = ziel;
	var Name = "popup";
	var Fensteroptionen = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
	var Breite = w;
	var Hoehe = h;
	window.open(URL, 'Name', Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
}

