<!--
function openPollWin(wName,wWidth,wHeight,wResize,obj)
{
	ok = 0;
	for (i=0; i < obj.length; i++) {
		if (obj[i].checked)
			ok = 1
	}

	if (ok == 1) {
		features = 'menubar=0,toolbar=0,location=0,directories=0,scrollbars=0,status=0,'
				+ 'resizable=' + ((wResize) ? 1 : 0)
				+ ((wWidth) ? ',width=' + wWidth : '')
				+ ((wHeight) ? ',height=' + wHeight : '');
		popWin = window.open('',wName,features);
		if(popWin.focus) popWin.focus();
		return true;
	}
	else {
//		alert('どれかひとつ選んでください。')
//		return false;
		features = 'menubar=0,toolbar=0,location=0,directories=0,scrollbars=0,status=0,'
				+ 'resizable=' + ((wResize) ? 1 : 0)
				+ ((wWidth) ? ',width=' + wWidth : '')
				+ ((wHeight) ? ',height=' + wHeight : '');
		popWin = window.open('',wName,features);
		if(popWin.focus) popWin.focus();
		return true;
	}
}
  // -->
