﻿// Giftcard Side Navigation
function go(caller) {
    if (!caller || !caller.getAttribute("targeturl")) {
        throw "Either the caller was not defined or the target url was not supplied";
    }
    var targetUrl = caller.getAttribute("targeturl");
    if (targetUrl == "{HOME}") {
        window.location = _geApplicationRoot + "/";
    }
    else {
        window.location = targetUrl;
    }
    return true;
}