/**
 * @author hiroshi
 */
var hana = {};
(function () {
function init() {
	$$('.handlerEventReport').each(function (e) {
		doPopUp(e, 682, 576);
	});
}

function doPopUp(a, width, height) {
	a.addEvent('click', function (event) {
		event = new Event(event);
		event.stop();
		var w = window.open(this.href, 'eventReport', 'width=' + width + ',height=' + height);
	});
}

hana.init = init;
})();
