function onload_function(){
	picSizeFixer();

}
	
/* detail pic fixer */
function picSizeFixer(){
  var doc=document.getElementById("modi_pic").getElementsByTagName("img");
  for (i=0;i<doc.length;i++){
    if (doc[i].width>550){
      doc[i].width=550;
      var imgLink=doc[i].src;
      if (navigator.appName=="Microsoft Internet Explorer"){
        doc[i].setAttribute("alt","Click to view the original picture");
        doc[i].onclick=function(){window.open(this.src);}
        doc[i].onmouseover=function(){this.style.cursor="hand";}
        }
      else {
        doc[i].setAttribute("onclick",'window.open("'+imgLink+'","")');
        }
      }
    }
  }