function imagebrowser(fullurl,windowtask) {
 if(windowtask == 1){
  URL = "/src/de/Imagebrowser?fullurl=" + fullurl
  imgwindow = window.open(URL,"Imgdom","width=800,height=800,screenX=0,screenY=0,scrollbars=yes, resizeable=yes");
 }
}

function imgclose(URL,windowtask){
 if(windowtask == 1){
  //URL = "/src/imagebrowser.pl?fullurl=" + fullurl
  mainwindow = window.open(URL,"Maindom");
 }
 imgwindow.close();
}

function mainclose(URL,windowtask){
 if(windowtask == 2){
  mainwindow = window.open(URL,"Maindom");
 }
 mainwindow.close();
}
