
<!--

/*
Random Image Link Script
*/

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="https://protected.bizland.com/threecountyfair/sponsors/dasullivan.jpg"
myimages[2]="https://protected.bizland.com/threecountyfair/sponsors/baystate_machine.jpg"
myimages[3]="https://protected.bizland.com/threecountyfair/sponsors/berkshire_design_group.jpg"
myimages[4]="https://protected.bizland.com/threecountyfair/sponsors/cooley_dickinson_hospital.jpg"
myimages[5]="https://protected.bizland.com/threecountyfair/sponsors/downtownsounds.jpg"
myimages[6]="https://protected.bizland.com/threecountyfair/sponsors/easthampton_savings_bank.jpg"
myimages[7]="https://protected.bizland.com/threecountyfair/sponsors/etheredge_steuer.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.dasullivan.com"
imagelinks[2]="http://www.baystatemachine.com"
imagelinks[3]="http://www.berkshiredesign.com"
imagelinks[4]="http://www.cooley-dickinson.org"
imagelinks[5]="http://www.downtownsounds.com"
imagelinks[6]="http://www.bankesb.com"
imagelinks[7]="http://www.noholaw.com"



var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+' target="_top"><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()
//-->


