function WindowPop(URL) {
 
   newWindow = window.open('','galerieWnd','statusbar=no,menubar=no,height=640,width=480,toolbar=no,titlebar=no,scrollbars=yes');
   tmp = newWindow.document;
   tmp.location.href=URL;
   return true;
 }
