
<!-- hide from older browsers

a = 2
var rand1 = Math.random();
var rand2 = Math.round(rand1 * (a-1))+1;

function create() {

    this.src = ' ';
    this.href = ' ';
    this.alt = ' ';

}

b = new Array();

for (var i = 1; i <= a; i++) {b[i]=new create() }

b[1].src = "http://www.dorpers-for-sale.com/Inventory/diane.jpg";
b[1].href = "http://www.dorpers-for-sale.com/dorper-purebred-results.asp";
b[1].alt= "Brewton Plantation";

b[2].src = "http://www.dorpers-for-sale.com/Inventory/baird.jpg";
b[2].href = "http://www.dorpers-for-sale.com/dorper-fullblood-results.asp";
b[2].alt= "E and J Sheep Farm";

var image = "";
image += '<a href="' + b[rand2].href + '" target="">';
image += '<img src="' + b[rand2].src + '"';
image += ' border=0 align=center ';
image += ' height=140 width=200 alt="';
image += b[rand2].alt + '">';
image +='</a>'

//-->



