function display_image(image_url, image_name, width, height) 
{

    var window_width=width+100;
    var window_height=height+100+30;
    var window_dimensions='width='+window_width+', height='+window_height+'';
    
    var new_window
    new_window = window.open("","",window_dimensions);
        
    new_window.document.writeln('<html>');
    new_window.document.writeln('<head>');
    new_window.document.writeln('<link rel="stylesheet" type="text/css" href="styles/fullview.css" />');
    new_window.document.writeln('<title>');
    new_window.document.writeln('<\/title>');
    new_window.document.writeln('<\/head>');
    new_window.document.writeln('<body>');
    new_window.document.writeln('<div class="fullview" style="width: '+width+'px; height: '+height+'px;">');
    new_window.document.writeln('<img src="'+image_url+'" alt="'+image_name+'" />');
    new_window.document.writeln('<p class="name">'+image_name+'</p>');
    new_window.document.writeln('<p class="author">(c)Ira Golub</p>');
    new_window.document.writeln('</div>');
    new_window.document.writeln('<\/body>');
    new_window.document.writeln('<\/html>'); 
    new_window.document.close();
    new_window.document.title = image_name;
}
