
function do_vote(present ,rhyme ,score, returnpath) {
	if (score != "") {
		url = "/do_vote.php?present=" + present + "&rhyme=" + rhyme + "&score=" + score + "&returnpath=" + returnpath;
		document.location = url;
	}
}


