function foto(file,title,copyright,width,height) {
a = parseInt(width) + 20;
b = parseInt(height) + 62;
openwin = window.open('foto.php?file='+file+'&title='+title+'&copyright=Foto: '+copyright+'','fotowin','status=no,toolbar=no,menubar=no,resizable=no,scrollbars=no,top=0,left=0,width='+a+',height='+b+'');
openwin.resizeTo(a,b);
openwin.focus();
}