﻿function VideoPlay(itemCode)
{
    var html = "<object width='420' height='363'>";
    html += "<param name='movie' value='http://www.tudou.com/v/" + itemCode + "'></param>";
    html += "<param name='allowFullScreen' value='true'></param>";
    html += "<param name='allowscriptaccess' value='always'></param>";
    html += "<param name='wmode' value='opaque'></param>";
    html += "<embed src='http://www.tudou.com/v/" + itemCode + "' type='application/x-shockwave-flash'";
    html += "allowscriptaccess='always' allowfullscreen='true' wmode='opaque' width='420'";
    html += "height='363'></embed>";
    html += "</object>";
    document.getElementById("VideoPlay").innerHTML = html;
}

function SetIsShow(liId, divId)
{
    for (var i = 0; i < VideoIDs.length; i++)
    {
        if ("li_" + VideoIDs[i] == liId)
        {
            if (VideoIDs[i].indexOf("L_") > -1)
            {
                document.getElementById("li_" + VideoIDs[i]).className = 'M_44';
            }
            else
            {
                document.getElementById("li_" + VideoIDs[i]).className = 'M_1';
            }
            document.getElementById("div_" + VideoIDs[i]).style.display = "block";
        }
        else
        {
            if (VideoIDs[i].indexOf("L_") > -1)
            {
                document.getElementById("li_" + VideoIDs[i]).className = 'M_4';
            }
            else
            {
                document.getElementById("li_" + VideoIDs[i]).className = 'M_2';
            }
            document.getElementById("div_" + VideoIDs[i]).style.display = "none";
        }
    }
}
