
function doSendComment(storyID){
	nameval=document.getElementById('name').value;
	commentval=document.getElementById('comment').value;
	controlval=document.getElementById('control').value;
	$.get('http://www.minsexnovell.com/ajax.php',  
      {command:'comment',storyid:storyID,name:nameval,comment:commentval,control:controlval},  

     function(response) { 
	 
	  if (response=="ERROR:captcha")
	    displayCommentError(label_captha_failed);
	  if (response=="ERROR:missingfields")
	    displayCommentError(label_required_field_not_set);
	  if (response=="OK"){
	    displayCommentError("");
	    document.getElementById('doComment').innerHTML=label_comment_sent;
	  }
	 }
	  ,  
      "text" 

 ); 

  }
  
  function displayCommentError(txt){
     el = document.getElementById("commentError");
	 el.innerHTML="<b style='color:red;'>"+txt+"</b>";
  }
  
  function vote(storyID){
	  var str = $("input[name='rating']:checked").val();
	  $.get('http://www.minsexnovell.com/ajax.php',  
      {command:'rate',storyid:storyID,rating:str},  

     function(response) { 
	  if (response=="OK")
	   document.getElementById ("ratingbox").innerHTML=label_vote_counted;
	  },  
      "text" 

 );  

	  
  }
