hermano muchas gracias por toda la ayuda pero aun no puedo echar a andar el codigo.
 
aqui los codigos de las paginas 
votes.php 
 Código HTML:
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script type="text/javascript">
function creaAjax(){
         var objetoAjax=false;
         try {
          /*Para navegadores distintos a internet explorer*/
          objetoAjax = new ActiveXObject("Msxml2.XMLHTTP");
         } catch (e) {
          try {
                   /*Para explorer*/
                   objetoAjax = new ActiveXObject("Microsoft.XMLHTTP");
                   }
                   catch (E) {
                   objetoAjax = false;
          }
         }
         if (!objetoAjax && typeof XMLHttpRequest!='undefined') {
          objetoAjax = new XMLHttpRequest();
         }
         return objetoAjax;
}
function votar(voto){
	var ajax=new ActiveXObject("msxml2.XMLHTTP");
	ajax.open("GET","vote.php?votar=true&id=1&voto="+voto,false);
	ajax.send();
	alert(ajax.ResponseText);
}
</script>
</head>
<body>
<img src="si.gif" onclick="votar('si')" style="cursor:hand">
</body>
</html>  vote.php 
 Código PHP:
    <?php
require("../db_config.php");
$link=conectarse();
$voto = $_GET['voto'];
$sql = mysql_query("SELECT * FROM news WHERE id_new='1'",$link);
$sqld1 = mysql_fetch_array($sql);
if($voto == "si"){
    $votos = $$sqld1[puntos];
    $votosd1 = $votos+1;
    mysql_query("UPDATE news SET puntos='$votosd1' WHERE id_new='1'",$link);
    echo "Su Voto Fue Agregado";
}
?>