/* function modalwindow window
--------------------------------------------------------------- */
$(function() {
	var anotherwindows = document.getElementsByTagName('a');
	var anotherwindowArea = document.getElementsByTagName('area');
	for (var i=0;i<anotherwindows.length;i++) {
		if (anotherwindows[i].getAttribute('className') == 'modalwindow_type' || anotherwindows[i].getAttribute('class') == 'modalwindow_type') {
			anotherwindows[i].onclick = function () {
				return winopens(this.href)
			}
		}
	}
	for (var i=0;i<anotherwindowArea.length;i++) {
		if (anotherwindowArea[i].getAttribute('className') == 'modalwindow_type' || anotherwindowArea[i].getAttribute('class') == 'modalwindow_type') {
			anotherwindowArea[i].onclick = function () {
				return winopens(this.href)
			}
		}
	}
	
})

function winopens(url) {
	var winName = url.split('/');
	var winName2 = winName[winName.length - 1];
	var winName3 = winName2.split('.');
	window.open(url,winName3[0],'width=920,height=600,scrollbars=1,resizable=1'); //横幅920px、縦幅600px、スクロール有、リサイズ有
	return false;
};


