﻿//<![CDATA[
// ～



// 1Clickアンケート
function scrollEffect (targetID){
	new Effect.ScrollTo (targetID, {duration:.5});
}

function voteAjax(voteNum) {
	var tarObj = $$(".enq_vote");
	for (i in tarObj) {
		tarObj[i].innerHTML = voteNum - 1 == i ? '+1=1票(10%)' : '0=10票(10%)';
	}
	tarObj[tarObj.length - 1].innerHTML = '集計期間？';
}

// 本文を読む
function view_all (tarId) {
	var thisObj = document.getElementById(tarId);
	var tarObj = document.getElementById(tarId + '_all');
	thisObj.style.display = 'none';
	tarObj.style.display = 'block';
}
// 本文をたたむ
function view_close (tarId) {
	var thisObj = document.getElementById(tarId);
	var tarObj = document.getElementById(tarId + '_all');
	tarObj.style.display = 'none';
	thisObj.style.display = 'block';
}

// 開閉
(function(onLoad) {
	try {  
		window.addEventListener('load', onLoad, false);
		} catch (e) {  
		window.attachEvent('onload', onLoad);
	}
	})(function() {
	var open  = function () {
		var tarObj = this.parentNode;
		if (!tarObj.id.match(/_close$/)) tarObj = tarObj.parentNode;
		tarObj.style.display = 'none';
		document.getElementById(tarObj.id.replace('_close', '_open')).style.display = 'block';
	};
	var close = function () {
		var tarObj = this.parentNode;
		if (!tarObj.id.match(/_open$/)) tarObj = tarObj.parentNode;
		tarObj.style.display = 'none';
		document.getElementById(tarObj.id.replace('_open', '_close')).style.display = 'block';
	};
	
	var el = document.getElementsByTagName('a');
	for (var j=0, len2=el.length; j<len2; j++) {
		var attr = el[j].getAttribute('class');
		if (!attr) attr = el[j].getAttribute("className"); //IE
		if (!attr || attr != 'open-close') continue;
		var tarObj = el[j].parentNode;
		if (!tarObj.id.match(/_close$/) && !tarObj.id.match(/_open$/)) tarObj = tarObj.parentNode;
		if (tarObj.id.match(/_close$/)) {
			el[j].onclick = open;
		} else if (tarObj.id.match(/_open$/)) {
			el[j].onclick = close;
		}
	}
});


// 地図を開く
function open_map (eventId){
	window.open ('/data/event_map.php?event_id=' + eventId , "map", "width=560,height=570,location=no,menubar=no,scrollbars=no,status=no,toolbar=no");
}
//]]>
