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

