<!-- hide from old browsers
//  Tage ab einem bestimmten Datum:
var maxAnz = 15 // Anzahl Bilder
var duration = 3 //wieviel Tage anzuzeigen
var picInd = 0
function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}
image = new StringArray(maxAnz)
image[0] = '../pic/x_tartini.jpg'
image[1] = '../pic/x_gulda.jpg'
image[2] = '../pic/x_mil.jpg'
image[3] = '../pic/x_joachim.jpg'
image[4] = '../pic/x_thb.jpg'
image[5] = '../pic/x_ois_d.jpg'
image[6] = '../pic/x_heif.jpg'
image[7] = '../pic/x_prihoda.jpg'
image[8] = '../pic/x_paganini.jpg'
image[9] = '../pic/x_perlm.jpg'
image[10] = '../pic/x_ric.jpg'
image[11] = '../pic/x_mil2.jpg'
image[12] = '../pic/x_bsch.jpg'
image[13] = '../pic/x_schub.jpg'
image[14] = '../pic/x_kog.jpg'

txt = new StringArray(maxAnz)
txt[0] = 'Giuseppe Tartini'
txt[1] = 'Friedrich Gulda'
txt[2] = 'Nathan Milstein'
txt[3] = 'Joseph Joachim'
txt[4] = 'Thomas Bernhard'
txt[5] = 'David Oistrach'
txt[6] = 'Jascha Heifetz'
txt[7] = 'Vasa Prihoda'
txt[8] = 'Niccolo Paganini'
txt[9] = 'Itzhak Perlman'
txt[10] = 'Ruggiero Ricci'
txt[11] = 'Nathan Milstein'
txt[12] = 'Benjamin Schmid'
txt[13] = 'Franz Schubert'
txt[14] = 'Leonid Kogan'

function PicOfDay () {
var today = new Date()
var targetDate = new Date("1/1/2001") 
var interval = ( today.getTime() - targetDate.getTime() ) / 86400000		
	interval=Math.floor(interval/duration)		
picInd = (interval % maxAnz )
return(image[picInd])
}

function pictext () {
return(txt[picInd])
}

//-->
