﻿/*
* PopupImage.js
* Script file to store animation methods for web page effects
*/

function pop(id, url) {
    var path = "url('./Images/" + url + "_Pop.png')";
    document.getElementById(id).style.backgroundImage = path;
}

function unpop(id, url) {
    var path = "url('./Images/" + url + "_Unpop.png')";
    document.getElementById(id).style.backgroundImage = path;
}
