

function features(){

var featurestext=new Array()

//specify text below. You can have as many as you wish
featurestext[1]="All taps"
featurestext[2]="Quarter Turn"
featurestext[3]="Compression"
featurestext[4]="Single Lever"
featurestext[5]="Filter Tap"
featurestext[6]="Hot Water"


//specify corresponding links below
var featureslinks=new Array()
featureslinks[1]="/taps/index.cgi?itemname=prodid103"
featureslinks[2]="/taps/index.cgi?itemname=prodid104"
featureslinks[3]="/taps/index.cgi?itemname=prodid105"
featureslinks[4]="/taps/index.cgi?itemname=prodid106"
featureslinks[5]="/taps/index.cgi?itemname=prodid107"
featureslinks[6]="/taps/index.cgi?itemname=prodid108"

document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#f3f3f3" style="border:0px solid gray"><tr><td class="graytop1" background="../backgrounds/bg3.gif">Select Feature</td></tr>')
for ( var i=1; i<=6; i++ ) 
document.write('<tr><td><div class="brand"><a href="'+rootdomain+''+featureslinks[i]+'">'+featurestext[i]+'</a></div></td></tr>')
document.write('</table>')
}
