
function resizeM(){var newIMG=document.getElementsByTagName('img');for(i=0;i<newIMG.length;i++){manM=new Image();theIMG=newIMG[i];if(newIMG[i].width>maxWidth){newIMG[i].width=maxWidth;newIMG[i].style.cursor="pointer";newIMG[i].onclick=function(){window.open(this.src);}
newDiv=document.createElement("div");newDiv.className="imgAlert";newDiv.style.width=newIMG[i].width-2+"px";newDiv.innerHTML=newMsg;parentDiv=theIMG.parentNode;parentDiv.insertBefore(newDiv,newIMG[i]);}}}