function loadit() {            // Active Images

            upTrion = new Image();      
            upTrion.src = "images/upTriOr.gif"; 
            upTrioff = new Image(); 
            upTrioff.src = "images/upTriBlu.gif"; 

            upTri1on = new Image();      
            upTri1on.src = "images/upTriOr.gif"; 
            upTri1off = new Image(); 
            upTri1off.src = "images/upTriBlu.gif"; 

            upTri2on = new Image();      
            upTri2on.src = "images/upTriOr.gif"; 
            upTri2off = new Image(); 
            upTri2off.src = "images/upTriBlu.gif"; 

            upTri3on = new Image();      
            upTri3on.src = "images/upTriOr.gif"; 
            upTri3off = new Image(); 
            upTri3off.src = "images/upTriBlu.gif"; 

            upTri4on = new Image();      
            upTri4on.src = "images/upTriOr.gif"; 
            upTri4off = new Image(); 
            upTri4off.src = "images/upTriBlu.gif";

            upTri5on = new Image();      
            upTri5on.src = "images/upTriOr.gif"; 
            upTri5off = new Image(); 
            upTri5off.src = "images/upTriBlu.gif";

}

if (document.images) {            // Active Images


        }

// 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");
        }
}

// New Window with Name and Size.
function newWindow(theName,theSize) {
       popWindow = window.open(theName, "Red Hill Animal Health Center", "status=yes,scrollbars=yes,resizable=yes," + theSize )
	popWindow.focus()
}
        
        //-->

<!-- Begin
var user;
var domain;
var suffix;

function jemail(user, domain, suffix){
document.write('<a class="footer" href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + user + '@' + domain + '.' + suffix + '</a>');

}
