﻿//***********************************************
//ニュースリリースのポップアップ
//DOM使用可能時点で実行
// @param なし
// @return void
$(newsOpen = function() {
	var nodeList = $('.popup');
	for(i=0,len=nodeList.length; i<len; i++) {
		var node = nodeList[i];
		$(node).click(function() {
			winOpen(this.href,'news',680,750,0,1,1);
			return false;
		});
	}
});