// FONCTION AFFICHEPROD
function afficheProd(typeProd,tarif) {
        switch(typeProd) {
                case "0": document.write("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"right\"><img src=\"http://www.belavenir.com/img/btprix_g.gif\" width=\"10\" height=\"17\"></td><td valign=\"middle\" nowrap background=\"http://www.belavenir.com/img/btprix_m.gif\" class=\"prixsmall\"> Gratuit </td><td><img src=\"http://www.belavenir.com/img/btprix_d.gif\" width=\"10\" height=\"17\"></td></tr> </table>");
                          break;
                case "1": document.write("uniquement sur abonnement");
                          break;
		case "3": document.write("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"right\"><img src=\"http://www.belavenir.com/img/btprix_g.gif\" width=\"10\" height=\"17\"></td><td valign=\"middle\" nowrap background=\"http://www.belavenir.com/img/btprix_m.gif\" class=\"prixsmall\"> A partir d'1,5&euro;</td><td><img src=\"http://www.belavenir.com/img/btprix_d.gif\" width=\"10\" height=\"17\"></td></tr> </table>");
                          break;
	 	case "6":
	 	case "7":
		case "4": document.write("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"right\"><img src=\"http://www.belavenir.com/img/btprix_g.gif\" width=\"10\" height=\"17\"></td><td valign=\"middle\" nowrap background=\"http://www.belavenir.com/img/btprix_m.gif\" class=\"prixsmall\">"+tarif+"&euro;</td><td><img src=\"http://www.belavenir.com/img/btprix_d.gif\" width=\"10\" height=\"17\"></td></tr> </table>");
                 	  break;
	 	case "5": 
			  document.write("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"right\"><img src=\"http://www.belavenir.com/img/btprix_g.gif\" width=\"10\" height=\"17\"></td><td valign=\"middle\" nowrap background=\"http://www.belavenir.com/img/btprix_m.gif\" class=\"prixsmall\">");
			  if ((tarif <= 3) || (tarif=="1,5")) document.write("A partir de ");
		    	  document.write(tarif+"&euro;</td><td><img src=\"http://www.belavenir.com/img/btprix_d.gif\" width=\"10\" height=\"17\"></td></tr> </table>");
                 	  break;

        }
}