function imgWindow(img,x,y) {
  var msgWindow = window.open('', 'enlarged_image', 'toolbar=no,menubar=no,scrollbars=no,width='+x+',height='+y);
  var page='<html><head><title>'+img+'</title><style>html,body{margin:0;padding:0;}</style></head><body><img src="'+img+'" /></body></html>';
  msgWindow.document.open();
  msgWindow.document.write(page);
  msgWindow.document.close();
}