/* function modalwindow window
--------------------------------------------------------------- */
window.onload = function() {
		var anotherwindow = document.getElementsByTagName('a');
		for (var i=0;i<anotherwindow.length;i++) {
			if (anotherwindow[i].getAttribute('idName') == 'modalwindow' || anotherwindow[i].getAttribute('id') == 'modalwindow') {
				anotherwindow[i].onclick = function () {
				return winopen(this.href)
				}
			}
		}
	};
	function winopen(url) {
		window.open(url,'modalwindow','width=1010,height=850,scrollbars=yes,location=yes,menubar=yes'); //横幅744px、縦幅650px、スクロール有、リサイズ有
		return false;
	};


