function openWin(folder,name,x,y){
  myWin= open('', '_blank', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+ x +',height='+ y +'');
  myWin.document.open();
  myWin.document.write('<html><head><title>'+ folder +'</title></head>');
  myWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><body style="margin:0px; padding:0px">');
  myWin.document.write('<img src="'+ folder +'/'+ name +'.jpg" width="'+ x +'" height="'+ y +'" border="0">');
  myWin.document.write('</body></html>');
  myWin.document.close();  
}