﻿// File JScript

function EIDOS_Video( myLink )
{
    var usAg = navigator.userAgent;
    //document.open();
    document.write("<object id=\"MediaPlayer\" width=\"320\" height=\"305\" align=\"top\"");

    if (usAg.indexOf('MSIE')>0)
    {
        document.write("classid=\"clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6\" >"); 
        document.write("<param name=\"URL\" value=\""  + myLink  + "\" />");
        document.write("<param name=\"volume\" value=\"50\" />");
        document.write("<param name=\"mute\" value=\"0\" />");
        document.write("<param name=\"stretchToFit\" value=\"0\" />");
        document.write("<param name=\"autostart\" value=\"true\" />");
    }
    else
    {
        document.write("data=\"" + myLink + "\" type=\"video/x-ms-wmv\" >");
        //document.write("<param name=\"autostart\" value=\"true\" />");
        document.write("<param name=\"controller\" value=\"false\" />");
        document.write("<param name=\"src\" value=\"" + myLink + "\" />");
        //document.write("<param name=\"qtsrcdontusebrowser\" value=\"true\" />");
        //document.write("<param name=\"enablejavascript\" value=\"true\" />");
    }
    document.write("</object>"); 
    //document.close();
}

function pippo()
{

    
}
