<!--

var imga = "images/random1.gif"
var imgb = "images/random2.gif"
var imgc = "images/random3.gif"
var imgd = "images/random4.gif"

var randomize = Math.round(Math.random()*7)

if (randomize == 1){
newimg2 = imga
}else if (randomize == 2){
newimg2 = imgb
}else if (randomize == 3){
newimg2 = imgc
}else{
newimg2 = imgd
}

//-->

<!--
       
        if (document.images) {
            adobequestion_on = new Image(); 
            adobequestion_on.src ="images/adobequestion_on.gif";
		
            adobequestion_off = new Image(); 
            adobequestion_off.src ="images/adobequestion_off.gif";
			
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_on.src");

        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "_off.src");

        }
}

// -->

