
<!--
       
        if (document.images) {
            bubble_03_on = new Image(); 
            bubble_03_on.src ="images/bubble_03_on.gif";
		
            bubble_03_off = new Image(); 
            bubble_03_off.src ="images/bubble_03_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");

        }
}

// -->


<!--
dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
now = new Date
// -->
