/**
 * 查看投票结果页
 * @param {Object} TopicSno
 */
function _ViewResult(TopicSno)
{
	var w=480; h=200;
    var l=Math.floor((screen.width-w)/2);
    var t=Math.floor((screen.height-h)/2);

	window.open('VoteResult_'+TopicSno+'.html','_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+w+'px,height='+h+'px,top='+t+'px,left='+l+'px');
}
/**
 * 进行投票页
 * @param {Object} TopicSno
 */
function _DoVote(TopicSno)
{
	var w=236; h=172;
    var l=Math.floor((screen.width-w)/2);
    var t=Math.floor((screen.height-h)/2);

	window.open('DoVote_'+TopicSno+'.html','_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+w+'px,height='+h+'px,top='+t+'px,left='+l+'px');
}
