var theLinks = new Array()

//Random-loading Links
theLinks[0] = '1' // Link
theLinks[1] = '2' // Link
theLinks[2] = '3' // Link
theLinks[3] = '4' // Link

var j = 0
var p = theLinks.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theLinks[i]
}
var whichLink = Math.round(Math.random()*(p-1));

function showLink(){
if(whichLink==0){
document.write('<a href="appeals.html" title="Appeals" class="appeals1">			&nbsp;		</a>');
}
else if(whichLink==1){
document.write('<a href="appeals.html" title="Appeals" class="appeals1">			&nbsp;		</a>');
}
else if(whichLink==2){
document.write('<a href="appeals.html" title="Appeals" class="appeals1">			&nbsp;		</a>');
}
else if(whichLink==3){
document.write('<a href="appeals.html" title="Appeals" class="appeals1">			&nbsp;		</a>');
}

}