Solution rapide et à l'emporte pièce : ajoutez le code suivant dans le ficher post.php de votre template. Pensez à modifier la variable $nom par votre identifiant NUOUZ ;)


<? $title = $GLOBALS['news']->f('post_titre');
      $nom="jpjp";
      $url = 'http://' . getenv('HTTP_HOST') . $GLOBALS['news']->getPermURL();
			$summary = $GLOBALS['news']->getChapo() != "" ? strip_tags($GLOBALS['news']->getChapo()) : strip_tags($GLOBALS['news']->getContent());
			$tN = array("\r", "\n", "\t");
			$tR = array("", " ", "");
			$summary = str_replace($tN, $tR, $summary);
			while (ereg("  ", $summary)) $summary = str_replace("  ", " ", $summary);
			$summary = substr(chop($summary), 0, 255) . '...';
				if ($title && $url) {
				if (dc_encoding != 'UTF-8') {
					$title = utf8_encode($title);
					$url = utf8_encode($url);
					$summary = utf8_encode($summary);
			}
	$summary=strip_tags($summary);					
       $url= urlencode($url);
      $summary= urlencode($summary);
     $title= urlencode($title);} ?>
		
<script language="javascript" src="http://www.nuouz.com/blogvote.aspx?nom=<?php echo $nom; ?>&titre=<?php echo $title; ?>&desc=<?php echo $summary; ?>&url=<?php echo $url; ?>"></script>