// JavaScript Documentfunction imgResize(id,rate){	// 変数の定義	imgWidth = document.getElementById(id).width; // 画像の幅	imgHeight = document.getElementById(id).height; // 画像の高さ  chgWidth = imgWidth*rate;  chgHeight = imgHeight*rate;  document.getElementById(id).width = chgWidth;	document.getElementById(id).height = chgHeight;}//-->