function get_date(maxNum)
{
  today=new Date();
  t=today.getDate()
  return t;
}
function dateQuote()
{
  var maxQuotes=31;
  var dQuote=get_date(maxQuotes);
  dQuote--;
var quote=new Array(maxQuotes)
quote[0]="<a href=\"01.asp\">ACACIA (O ROBINIA)</a>";
quote[1]="<a href=\"02.asp\">ACETOSA</a>";
quote[2]="<a href=\"03.asp\">ACETOSELLA</a>";
quote[3]="<a href=\"04.asp\">AGLIO</a>";
quote[4]="<a href=\"05.asp\">ALBICOCCO</a>";
quote[5]="<a href=\"06.asp\">ALLORO</a>";
quote[6]="<a href=\"07.asp\">ANETO</a>";
quote[7]="<a href=\"08.asp\">ARANCIO DOLCE E ARANCIO AMARO</a>";
quote[8]="<a href=\"09.asp\">ARGENTINA (E TARTUFI)</a>";
quote[9]="<a href=\"10.asp\">ASPARAGO</a>";
quote[10]="<a href=\"11.asp\">BARBABIETOLA ROSSA</a>";
quote[11]="<a href=\"12.asp\">BARBA DI BECCO</a>";
quote[12]="<a href=\"13.asp\">BARBAREA</a>"; 
quote[13]="<a href=\"14.asp\">BARDANA</a>";
quote[14]="<a href=\"15.asp\">BASILICO</a>";
quote[15]="<a href=\"16.asp\">BECCABUNGA</a>";
quote[16]="<a href=\"17.asp\">BIANCOSPINO</a>";
quote[17]="<a href=\"18.asp\">BIETOLA</a>";
quote[18]="<a href=\"19.asp\">BISTORTA</a>";
quote[19]="<a href=\"20.asp\">BORRAGINE</a>";
quote[20]="<a href=\"21.asp\">CALCITRAPA (cardo stellato)</a>";
quote[21]="<a href=\"22.asp\">CALTA</a>";
quote[22]="<a href=\"23.asp\">CAMOMILLA</a>";  
quote[23]="<a href=\"24.asp\">CAPPERO</a>";
quote[24]="<a href=\"25.asp\">CARCIOFO</a>";
quote[25]="<a href=\"26.asp\">CARDO DEI LANAIOLI</a>";
quote[26]="<a href=\"27.asp\">CARDO MARIANO</a>";
quote[27]="<a href=\"28.asp\">CAROTA</a>";
quote[28]="<a href=\"29.asp\">CARRUBO</a>";
quote[29]="<a href=\"30.asp\">CASTAGNO</a>";
quote[30]="<a href=\"31.asp\">CAVOLO</a>";
document.write(quote[dQuote]);
}