function view_pic(caption,imgpath,width,height){
  
  var new_width=30+Number(width);
  var new_height=25+Number(height);
  
  fereastra=window.open("", "newwin", "width="+new_width+",height="+new_height+",toolbar=no,menubar=no, scrollbars=yes");
  fereastra.document.write("<title>"+caption+"<\/title>");
  fereastra.document.write('<body style="background-color:#fafafa;overflow:auto;margin:10px;padding:0px">');
  fereastra.document.write('<img src="'+imgpath+'" width="'+width+'" height="'+height+'" alt="image"><br \/>');
  fereastra.document.write("<\/body>");
  fereastra.document.write("<\/html>");
}



