/**
*
* voteform.js :: 投票的js文件 :: script
* 
* $Id: voteform.js 67 2007-06-01 03:48:20Z $
*/
var newWindow = null;
function openvotewindow(loadpos)
{
	if (!newWindow || newWindow.closed)
	{
		newWindow = window.open(loadpos,'votewindow','resizable,dependent,width=400,height=600');
	}
	else
	{
		newWindow.focus();
	}
}

function view_result(subjectid)
{
	var url = 'http://localhost/livcms3.0/jsqx/vote/vote.php?subjectid=' + subjectid;
	window.open(url,'votewindow','resizable,dependent,width=400,height=400');
}

