// JavaScript Document
function changeImg(){
var img=(document.getElementsByTagName("img")!="null")?document.getElementsByTagName("img"):document.getElementsByTagName("IMG");
if (img.length>0)
{
for(var i=0;i<img.length;i++)
{
   if(img[i].src.toLowerCase().indexOf("uploadfile")>0||img[i].src.toLowerCase().indexOf("defaulimg")>0)
   {
     if(parseInt(img[i].width)>600){ img[i].width=600;}
   
   }
}

}
}
