function popup(url,hoehe,breite){
	window.open(url,'pop','width="+breite+",height="+hoehe+"');
}

function newwindow (url, breite, hoehe){
		
		if (navigator.appName=="Microsoft Internet Explorer"){
			var breite =breite;
			var hoehe = hoehe;
			eval("window.open(url,'','directories=no,toolbar=no,status=no,resizable=no,scrollbars=no,width="+breite+",height="+hoehe+"')");
					
			}
			else{
				eval("window.open(url,'','directories=no,toolbar=no,status=no,resizable=no,scrollbars=no,width="+breite+",height="+hoehe+"')");
				}
}