function zapDefault(box, defaultText)
{
	if (box.value == defaultText) box.value='';
}

/* Variables that need to be set before calling this:

	voteLocation - The url of the voting page
	id - The ID of the voting whatsit
	fromURL - The calling page
*/
function placeVote(vote)
{
	window.location = voteLocation + "?id=" + id + "&vote=" + vote + "&fromurl=" + fromURL;
	return false;
}
