
<!-- comment out the script to hide it from older browsers

// This function creates a thermometer
// Davide Andrea 2008
function thermometer(level,goal,maxheigh) { // receives the present funding level [$] and the goal [$]
var maxHeight = 50

document.write('<table align="right" border=0 cellpadding=0 cellspacing=0><tr><td>')
document.write('<img src="http://kgnu.org/graphics/thermometer_top.gif" width=40 height=13><br>')
document.write('<img id="empty" src="http://kgnu.org/graphics/thermometer_empty.gif" width=40 height=' + maxHeight * (1 - level/ goal) + '><br>')
document.write('<img id="full" src="http://kgnu.org/graphics/thermometer_full.gif" width=40 height=' + maxHeight * level/ goal + '><br>')
document.write('<img src="http://kgnu.org/graphics/thermometer_bottom.gif" width=40 height=39><br>')
document.write('$ ' + level);
document.write('</td></tr></table>')
}

//	-->

