var VoteNum = 0
function MakeVote(){
	if (VoteNum > 0) {
		var name;
		var m;
		var w,h,top,left;
		var QID = document.frmVote.Q_ID.value
		w = 500;
		h = 376;
		left = Math.abs((screen.width - w) / 2);
		top = Math.abs((screen.height - h) / 2);
		name = "../poll/Vote/PostVote.asp?QID=" + QID + "&VoteNum=" + VoteNum;
		m = window.open("",'PostVote','resizable=no,width=' + w + ',height=' + h + ',left=' + left + ',top=' + top + ',status=no,location=no,toolbar=no,scrollbars=yes');
		m.location.href = name;
		m.focus();
	}
	else alert('Please select your choice.');
}
function ViewResult(){
		var name;
		var m;
		var w,h,top,left;
		var QID = document.frmVote.Q_ID.value
		w = 500;
		h = 350;
		left = Math.abs((screen.width - w) / 2);
		top = Math.abs((screen.height - h) / 2);
		name = "../poll/Vote/ViewResult.asp?QID=" + QID;
		m = window.open("",'ViewResult','resizable=no,width=' + w + ',height=' + h + ',left=' + left + ',top=' + top + ',status=no,location=no,toolbar=no,scrollbars=yes');
		m.location.href = name;
		m.focus();
}


function MainPage(){
		var name;
		var m;
		var w,h,top,left;
		var QID = document.frmVote.Q_ID.value
		w = 420;
		h = 250;
		left = Math.abs((screen.width - w) / 2);
		top = Math.abs((screen.height - h) / 2);
		name = "../../include/rightmenu.asp";
		m = window.open("",'ViewResult','resizable=no,width=' + w + ',height=' + h + ',left=' + left + ',top=' + top + ',status=no,location=no,toolbar=no,scrollbars=yes');
		m.location.href = name;
		m.focus();
}

