function msover(img1,ref1)

        {

                if (document.images)

                        {

                        document.images[img1].src = eval(ref1 + ".src");

                        }

        }


function msout(img1,ref1)

        {

                 if (document.images)

                        {

                        document.images[img1].src = ref1;

                        }

        }


function msover2(img1,ref1,img2,ref2)

        {

                if (document.images)

                        {

                        document.images[img1].src = eval(ref1 + ".src");

                        document.images[img2].src = eval(ref2 + ".src");

                        }

        }
        
        
        
function msout2(img1,ref1,img2,ref2)

        {

                 if (document.images)

                        {

                        document.images[img1].src = ref1;

                        document.images[img2].src = ref2;

                        }

        }
