//  showInfo
//  Bei MouseOver ein Fenster in der Größe "width" und "height" öffnen und die Graphik "pic" anzeigen

var info;

function showInfo(pic, width, height){
  info = window.open (pic,"popup","width="+width+",height="+height+",location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=1,toolbar=0");
}
