<!--
function OpenWin8() {
var no = document.pollform8.no.value;
var com = document.pollform8.com.value;

if (com == "") {
document.pollform8.com.value = 'none';
com = document.pollform8.com.value;
} else {
com = document.pollform8.com.value;
}

var poll = 0;

for (var i=0; i < document.pollform8.poll.length; i++) {
if (document.pollform8.poll[i].checked) {
poll = document.pollform8.poll[i].value;
}
}

if (poll == 0) {
alert ("項目がチェックされていません！");
} else {
window.open ('http://vote1.fc2.com/poll.cgi?user=spaceman&mode=on&no='+no+'&poll='+poll+'&com='+com+'&ref='+location.href, 'newwin', 'menubar=no, scrollbars=yes, width=330, height=362');
}
}

function ResultWin (No) {
window.open('http://vote1.fc2.com/poll.cgi?user=spaceman&mode=result&no='+No, 'newwin', 'menubar=no, scrollbars=yes, width=330, height=362');
}
//-->