
/*
	バナー部分のJS書き出し関数
*/

//---------------------------------------------------------------
var imgsrc = '/images/dammy/bnr.jpg';

var areaArray = new Array();
areaArray[0] = new acode("rect","3,10,162,105","http://www.aeonshop.com/index.html","イオンショップ");
areaArray[1] = new acode("rect","3,104,162,178","http://www.aeonretail.jp/jusco/index.html","新規店舗案内");
areaArray[2] = new acode("rect","3,177,162,260","http://www.aeonretail.jp/otoku/kansyaday.html","優待・特典");
areaArray[3] = new acode("rect","3,259,162,343","http://www.aeonretail.jp/chirashi/index.html","チラシ情報");
//---------------------------------------------------------------



function acode(shape,coords,href,alt){
	this.shape = shape;
	this.coords = coords;
	this.href = href;
	this.alt = alt;
}

function setBnr(){
	if(areaArray.length == 0) return false;
	var str = '<p><img src="' + imgsrc + '" alt="" border="0" usemap="#banner"></p>\n<map name="banner">';
	for(var i=0; i<areaArray.length ; i++){
		str += '<area shape="' + areaArray[i].shape + '" coords="' + areaArray[i].coords + '" href="' + areaArray[i].href + '" alt="' + areaArray[i].alt + '">\n';
	}
	str += '</map>\n';
	
	document.open();
	document.write(str);
	document.close();
}
