// JavaScript Document

function popup_window( url, id, width, height )
{
popup = window.open(url, id, 'toolbar=no, scrollbars=no, location=no, statusbar=no, menubar=no, resizable=no, width=' + width + ', height=' + height + '' );
popup.focus();
}


function infoPop(info, xSize, ySize) {
   var popup = window.open(info,"Bild",'width='+xSize+',height='+ySize+',resizable=yes, scrollbars=1, left=0, top=0');
   popup.resizeTo(xSize+10,ySize+10);                  
   popup.focus();
   if( navigator.appName.substring(0,8) == "Netscape"){
      popup.location = Imgsrc;
      popup.resizeTo(xSize+15,ySize+15);
   }
}
