function popup(url, name, description, width, height)
{
 popupwnd = window.open('about:blank', name, 'width='+width+', height='+height+', scrollbars=no, resizable=no, status=no');
 popupwnd.document.write('<html><head><title>'+description+'</title></head><body><img src=\"'+url+'\"></body></html>');
 popupwnd.focus();
}


