﻿$(document).ready(function(){

    $(".MainTextTitle h2 a").click(function(){
        var avideoURL = "../Downloads/?ProgramID=" + $(this).attr("thisPrg")       
        Popup(avideoURL,"Video","width=420,height=370,status=no")
    });

    $("#SiparisVer").click(function(){
        $(".ProductsFormContent").slideToggle("fast");
    })
        $("#SiparisVer2").click(function(){
        $(".ProductsFormContent2").slideToggle("fast");
    })
});

function Popup(URL,Name,W) {
    window.open (URL,name,W); 
}

