function controlImg(ele,w,h) {
var c=ele.getElementsByTagName("img");
for(var i=0;i
var w0=c[i].clientWidth,h0= c[i ].clientHeight;
var t1=w0/w,t2=h0/h;
if(t1>1||t2>1){
c[i].width=Math.フロア(w0 /(t1>t2?t1:t2));
c[i].height=Math.floor(h0/(t1>t2?t1:t2)); ){
c[i].outerHTML='' innerHTML '< ;/a>'
}
else{
c[i].title="新しいウィンドウで画像を開く";
c[i].onclick=function(e){ window.open (this.src)}
}
}
}
}
window.onload=function(){
controlImg(document.getElementById("content"), 670,980);
}
コンテンツ部分の制御には通常、controlImg(document.getElementById("content"),670,980); のコンテンツを使用します。