/*
	NIIGATA AIRPORT [index.js]
	(C)2009 Shinkousoku Printing Inc.
*/
/*for Dreamweaver: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />*/

function setup() {
	var i, count;
	var buttons = document.getElementsByName('tour_edit');
	for (i = 0, count = buttons.length; i < count; i++) {
		var button = buttons[i];
		K.addEventListener(button, 'click', function(e) {
			var o = (e.srcElement) ? e.srcElement : this;
			var id = o.id.split('_')[1];
			document.location.href = 'input_text.php?id=' + id;
		}, false);
	}
}

K.addEventListener(window, 'load', setup, false);
