// JavaScript Document

function votes(type,id,score){ 

		var url = "http://www.megasitio.com/votar.php?type="+type+"&id="+id+"&score="+score;
	 
		new Ajax(url, {
			method: 'get',
			update: $('votes')
		}).request()

}

