var imgArray = new Array();
imgArray['img1'] = 'EBP09-16997B.jpg,angkor.php,世界遺産｜アンコール';

var objImg;
var imgFName;
var imgUrl;
var tempArray;
function imgRollover(objImg) {
	tempArray = null;
	imgFName = null;
	imgUrl = null;
	tempArray = imgArray[objImg].split(',');
	imgFName = tempArray[0];
	imgUrl = tempArray[1];
	imgAlt = tempArray[2];

	photoObj = '<img src="img/' + imgFName + '" alt="' + imgAlt + '" name="isan_topimage" width="301" height="240" border="0" usemap="#isan_topimageMap" id="isan_topimage" />';
	photoObj += '<map name="isan_topimageMap" id="isan_topimageMap">';
	if(imgUrl != ''){photoObj += '<area coords="169,204,290,232" shape="rect" href="' + imgUrl + '" />';}
	photoObj += '</map>';
	
	document.getElementById('isan_map_photo').innerHTML = photoObj;
	
}
