function openPopup(url, width, height, left, top, winname) {
        var trails="width=" + width + ",height=" + height + ",left=" + left +",top=" + top +",toolbar=no,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no";
        newWindow=window.open( url, winname, trails);              
}

function ShowPic(pict,Desc,W,H)
{
  win=window.open('', '','status=no,toolbar=no,menubar=no,height='+H+',width='+W);
  win.document.open();
  win.document.write('<html><head><title>'+Desc+'</title></head>');
  win.document.write('<body topmargin="0" leftmargin="0" rightmargin="0" marginwidth="0" marginheight="0">');
  win.document.write('<img onClick=window.close() src='+pict+' alt="'+Desc+'">');
  win.document.write("</body></html>");
  win.document.close();  
  
  return false;
}
