/****************************
 * Zradio theme for Gallery2
 * @author Ray Hill
 * $Revision: 16920 $
 */
function popBubble(e)
{
    if (!e) var e = window.event;
    e.cancelBubble = true;
    if (e.stopPropagation) e.stopPropagation();
}

function goThere(e)
{
    var targ;
    if (!e) var e = window.event;
    if (e.target) targ = e.target;
    else if (e.srcElement) targ = e.srcElement;
    if (targ.nodeType == 3) // defeat Safari bug
        targ = targ.parentNode;
    targ = targ.parentNode;
    if( targ.className != 'block-core-ItemLinks' )
    {
    location = goLocation;
    }
    
}