//各htmlで設定する項目（例）
/*
imgPath="../img";			//画像の保存先パス
imgName="style_";			//可変するimgの名前
imgFormat=".jpg";			//画像フォーマット
*/

function showImg(imgNum,comment,staff) {//イメージチェンジ
var pics=imgPath+imgName+imgNum+imgFormat;
//alert(pics);
document.images["photo"].src=pics;		//imageのソース
if(document.getElementById){		//N6,Moz,IE5,IE6用　imgNumを表示させる場合
		document.getElementById("comment").innerHTML=comment;
		document.getElementById("staff").innerHTML=staff;
	}
	
	else if(document.all){		//IE4用　imgNumを表示させる場合
		document.all("comment").innerText=comment;
		document.all("staff").innerTextstaff;
	}
}
