//SHOP5 Tags
    document.observe('cart:modify', function (obj) {
         if (typeof obj.memo.result.cm_tags != "undefined"){
             eval (obj.memo.result.cm_tags);
         }
    });


function tag(product) {
    
    if (typeof product.pageView != "undefined") { 
        eval("cmCreatePageviewTag(\"QV : " + product.productName + " (" + product.productId + ")\", \"\", \"" + product.catId + "\", \"\");");
    }
        
    if (typeof product.pageView != "undefined") { 
        eval("cmCreateProductviewTag(\"" + product.productId + "\",   \"" + product.productName + "\",     \"" + product.catId + "\"      ,\"" + product.productAttributes + "\",null,   \""+product.xCat+"\")");
    }
    
}