﻿function el(id)
{
    return document.getElementById(id);
}

function OpenVideo(ProductId)
{
    var href = "/GetProductVideo.asp?ProductId=" + ProductId 

    window.open(href, "VideoWin", "status=0,toolbar=0,menubar=0,directories=0,resizable=0,scrollbars=0,height:200,width=200");

}
