﻿for(var i=0;i<document.images.length;i++){
  document.images[i].onload=function(){
    if(this.width>500){
      this.width=500;
      this.style.cursor="pointer";
      this.onclick=function(){
        window.open(this.src);
      }
    }
  }
}