function pop_up(target,breite,hoehe){

    		var screenw = screen.availWidth; 
    		var screenh = screen.availHeight; 
    		var winw = breite; 
    		var winh = hoehe; 
    		var posx = (screenw / 2) - (winw / 2); 
    		var posy = (screenh / 2) - (winh / 2) - 50;
			window.open(target,"_blank","top="+posy+",left="+posx+",width="+winw+",height="+winh+",scrollbars=no,status=no,titlebar=no,toolbar=no,resizeable=no");
	
}
