function popup(url,name,sizex,sizey,features) {
	
	fenster = window.open(url, name, "width=" + sizex + ",height=" + sizey + "," + features);
	fenster.moveTo(((screen.width/2)-(sizex/2)),((screen.height/2)-(sizey/2)));
	
}
