var vote = function() { }

vote.url = function() {
	return "../root/vote.x?t=" + new Date().getTime();
}

vote.like = function(id) {
	var url = vote.url() + "&ps=1&id=" + id;
	document.location.href = url;
}

vote.dislike = function(id) {
	var url = vote.url() + "&ps=0&id=" + id;
	document.location.href = url;
}
