﻿// JScript File

 function loadVideo(movieSrc,autostart)
{
    //document.getElementById("DivVideos").innerHTML = "";
//    var innerText="";
//    innerText = '<object id="MediaPlayer1" width="380px" height="400px" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft® Windows® Media Player components..." type="application/x-oleobject" align="middle">';
//    innerText += '<param name="FileName" value="' + movieSrc + '" />';
//    innerText += '<param name="ShowStatusBar" value="True" />';
//    innerText += '<param name="DefaultFrame" value="mainFrame" />';
//    innerText += '<param name="autoStart" value="True" />';
//    innerText += '<embed type="application/x-mplayer2" style="width:380px; height:400px;" autoStart="1" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="' + movieSrc + '" />';
//    innerText += '</object>';
    //document.getElementById("DivVideos").innerHTML = innerText;
    var url="videopage.aspx?id=" + movieSrc;
   // var url="http://www.segnantphp.com/sandbox/tractionplus/popup2.html";
   
    if (window.showModalDialog)
//        window.showModalDialog(url,'_blank','dialogWidth:255px;dialogHeight:250px');
        window.showModalDialog(url,"name","dialogWidth:350px;dialogHeight:400px");
    else
        //window.open(url,'em','width=350,height=340,scrollbars=0,resizeable=1,modal=1');
        window.open(url,'name','height=350,width=350,left=10,top=10,toolbar=no,directories=no,status=no,linemenubar=no,scrollbars=no,resizable=no,modal=yes');
        return false;
        
        
        
        
        
        
        
        
        
        
}