// JavaScript Document
function votes(id,score){ 

		var url = "http://www.sharemula.org/v2_votar.php?id="+id+"&score="+score;
	 
		new Ajax(url, {
			method: 'get',
			update: $('votes')
		}).request()

}
