/* HP flash map omniture capture and URL jump */
function omnitureFlashClick(omnitureAccount,vendorName,podName, url)
{

    // try and log to omniture, if omniture library available/loaded/

    if (typeof s_gi!="undefined") {
        var s=s_gi(omnitureAccount);
        s.linkTrackVars='prop26,prop27,eVar31,eVar32';
        s.linkTrackEvents='None';
        s.prop26=podName;
        s.prop27=vendorName;
        s.eVar31=podName;
        s.eVar32=vendorName;
        s.tl(this,'o', 'Homepage :: '+podName+' :: '+vendorName);
    }
    document.location.href=url;
}


