/*
* 功能：处理问卷调查部分
*/
function setVoteUrl() {
	var voteForm = document.getElementById("webvote");
	return showVoteInfo(voteForm.voteid.value);
}
/*
* 查看指定调查的结果
*/
function showVoteInfo(voteid){
	var url = "?voteid=" + voteid;
	window.open("webVoteInfoAction!show.action" + url, "_VoteWin", "width=400px,height=200px,top=200,left=300");
	return false;
}

function checkVote1() {
	var loContent = document.all("contentid");
	var voteForm = document.getElementById("webvote");
	if (loContent == null) {
		alert("\u5bf9\u4e0d\u8d77\uff0c\u6682\u65f6\u65e0\u6cd5\u8fdb\u884c\u6295\u7968\uff01");
		return;
	}
	if (typeof (loContent.length) == "undefined") {
		//只有丄1?7丄1?7
		if (!loContent.checked) {
			alert("\u8bf7\u9009\u62e9\u4f60\u8981\u6295\u7968\u7684\u9009\u9879\uff01");
			return;
		} else {
			var url = "?voteid=" + voteForm.voteid.value + "&contentid=" + voteForm.contentid.value;
			window.open("webVoteInfoAction!save.action" + url, "_VoteWin", "width=400px,height=200px,top=200,left=300");
			 //voteForm.action="webVoteInfoAction!save.action";
			//voteForm.submit();
			return;
		}
	}
	var bSelect = false;
	var url = "?voteid=" + voteForm.voteid.value;
	for (var i = 0; i < loContent.length; i++) {
		if (loContent[i].checked) {
			url += "&contentid=" + loContent[i].value;
		}
	}
	for (var i = 0; i < loContent.length; i++) {
		if (loContent[i].checked) {
			bSelect = true;
			break;
		}
	}
	if (!bSelect) {
		alert("\u8bf7\u9009\u62e9\u4f60\u8981\u6295\u7968\u7684\u9009\u9879\uff01");
		return false;
	}
	window.open("webVoteInfoAction!save.action" + url, "_VoteWin", "width=400px,height=200px,top=200,left=300");
	// voteForm.action="webVoteInfoAction!save.action"+url;
	//voteForm.submit();
	return true;
}
///LSW
function checkVote(){
	var vote_num=$j('input[name=contentid]').length;
	if(vote_num==0){
		alert("\u5bf9\u4e0d\u8d77\uff0c\u6682\u65f6\u65e0\u6cd5\u8fdb\u884c\u6295\u7968\uff01");
		return false;
	}else{
		var result='?';
		var chks=$j('input[name=contentid]:checked');
		var $_chks=$j(chks);
		$_chks.each(function(ind){
				result=result+'contentid='+$j(this).val()+'&';
		});

		if(result=='?'){
			alert("\u8bf7\u9009\u62e9\u4f60\u8981\u6295\u7968\u7684\u9009\u9879\uff01");
			return false;
		}else{
			result=result.substring(0,result.length-1);
			window.open("webVoteInfoAction!save.action" + result, "_VoteWin", "width=400px,height=200px,top=200,left=300");
		}
	}
	return false;
}
