/*
 * closeUpViewer/default.js
 *
 * @desc: This file contains all functions used by xoom viewer
 * @author: Daniel Polak (2010)
 *
 */

function getFileName(path) {
    var l = path.lastIndexOf("/") + 1;
    return path.substring(l);
}

function printFlashBox() {
    var flashvars = {
        img : "/productphotos/upload/" + getFileName(jQuery("div.productPicBox img:visible").attr("src")),
        color1 : "666666",
        color2 : "666666"
    };

    var params = {
        play : "true",
        loop : "true",
        menu : "true",
        quality : "best",
        scale : "showall",
        wmode : "transparent",
        bgcolor : "#333333",
        devicefont : "false",
        allowfullscreen : "false",
        allowscriptaccess : "sameDomain"
    };

    var attributes = { align : "middle" };

    swfobject.embedSWF("/modules/xoom/xoom.swf", "xoomFlashBox", "600", "500", "9.0.0", false, flashvars, params, attributes);
}