function ThumbNailOpen(f,w,h) {
  mywindow = window.open('','','width='+w+',height='+h+',left='+(screen.width/2-w/2)+',top='+(screen.height/2-h/2));
  mywindow.document.write('<html>');
  mywindow.document.write('<body style="margin:0;padding:0">');
  mywindow.document.write('<p style="margin:0;padding:0"><a href="javascript:window.close()"><img style="margin:0;padding:0;border:0" src="'+f+'" alt="" /></a></p>');
  mywindow.document.write('</body>');
  mywindow.document.write('</html>');
}