function open_photo(file, w, h, desc) {

    w += 30 ;
    h += 70 ;

    //photo.close() ;
    photo = window.open(file, 'photo', 'width='+w+', height='+h+', top=0,left=0') ;
    //photo = window.open() ;
    photo.resizeTo(w, h) ;

    //photo.document.open() ;
    //photo.document.write('<html><head><title>'+desc+'</title></head><body>'+desc+'</body></html>') ;
    //photo.document.write('bla') ;
    //photo.document.close() ;
    //photo.document.title = 't' ;

    photo.focus() ;
}
