// JavaScript Documentfunction openwin( ziel ) {  if( ziel ) {    win = window.open( 'furtherinfos/' + ziel, 'win', 'width=640,height=480,screenX=50,screenY=50,scrollbars=YES');    if( document.all )      win.moveTo(50,50);    win.focus();  }}