
document.write("<script type='text/javascript' src='/scripts/jquery/jquery/jquery.js'></script>");
function comment_vote(str,cid)
{

document.getElementById('agreelink'+cid).style.display="none";
document.getElementById('agreenolink'+cid).style.display="";
document.getElementById('disagreelink'+cid).style.display="none";
document.getElementById('disagreenolink'+cid).style.display="";

$.get("/modules/comments/comment_vote.php",{vote:str,comid:cid},
 function (resp)
 {
  	if(resp==0)
	{
		alert('You have already voted!');
		return false;
	}
	else
	{
		if(str==1) {
		document.getElementById('agreeid'+cid).innerHTML="("+resp+")";
		return false;
		}
		else {
		document.getElementById('disagreeid'+cid).innerHTML="("+resp+")";		
		return false;
		}
	}
 }

 );
}


