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');
}
