
function OpenWin8() {
var id = document.pollform8.id.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://magicalkitchen.com/poll/poll.cgi?mode=on&id='+id+'&poll='+poll+'&co
m='+com, 'newwin', 'menubar=no, scrollbars=yes, width=330, height=302');
}
}

function ResultWin (Id) {
window.open('http://magicalkitchen.com/poll/poll.cgi?mode=result&id='+Id,'ne
wwin','menubar=no, scrollbars=yes, width=330, height=302');
}

