﻿function swapImage(object, image) 
{
    if (object!=null){
        object.src=image;
    }
}
