<!--
/********************************************************************
* switchimage.js                                                       *
*                                                                   *
* Author : Sven Cipido                                              *
* E-mail : sven@winkelsite.com                                      *
* URL : http://www.winkelsite.com/sccs/                             *
* Version : 1.0                                                     *
* Last updated : January 13, 2001.                                  *
*                                                                   *
* This function change the images when the mouse goes over or out   *
* of the image.                                                     *
*                                                                   *
********************************************************************/

// 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");
                }
}

/* end of Mouseover */