// popup
function popup(url,w,h)
{
  win = window.open(url,"Fenster"+w,"width="+w+",height="+h+",left="+(screen.width/2-w/2)+",top="+(screen.height/2-h/2));
  win.opener = this;
  win.focus();			
}  
