function PlayVideo(vname, photoname, autoplay)
{ 
    var s1 = new SWFObject("/mediaplayer.swf","mediaplayer","480","330","9.0.115");
    s1.addParam("allowfullscreen","true");
    s1.addVariable("allowscriptaccess", "always");
    s1.addVariable("width","480");
    s1.addVariable("height","330");                        
    s1.addVariable("autostart", autoplay);
    s1.addVariable("searchbar","false");
    s1.addVariable("image",photoname);
    s1.addVariable("overstretch","true");
    s1.addVariable("enablejs","true");
    s1.addVariable("file",  vname );
    s1.addVariable("smoothing", "true");
    s1.write("flashplayer_horse");  
}

function Play2Video(vname, photoname, autoplay)
{ 
    var s1 = new SWFObject("/mediaplayer.swf","mediaplayer","480","330","9.0.115");
    s1.addParam("allowfullscreen","true");
    s1.addVariable("allowscriptaccess", "always");
    s1.addVariable("width","480");
    s1.addVariable("height","330");                        
    s1.addVariable("autostart", autoplay);
    s1.addVariable("searchbar","false");
    s1.addVariable("image","/2minvideo/images/" + photoname + "");
    s1.addVariable("overstretch","true");
    s1.addVariable("enablejs","true");
    s1.addVariable("file", "/2minvideo/videos/" + vname + "");
    s1.addVariable("smoothing", "true");
    s1.write("flashplayer");  
}


function PlayPreroll(vid)
{ 
    var s1 = new SWFObject("/mediaplayer.swf","mediaplayer","480","330","9.0.115");
    s1.addParam("allowfullscreen","true");
    s1.addVariable("allowscriptaccess", "always");
    s1.addVariable("width","480");
    s1.addVariable("height","330"); 
    s1.addVariable("displayheight","310");                       
    s1.addVariable("autostart", "false");
    s1.addVariable("searchbar","false");                
    s1.addVariable("overstretch","true");
    s1.addVariable("enablejs","true");
    s1.addVariable("file", "twovideolist_"+vid+".xml");
    s1.addVariable("smoothing", "true");
    s1.write("flashplayer");      
}



function Next2Video(idx)
{
    document.getElementById("pTitle").innerHTML = arrayVideo[idx][0];
    document.getElementById("pDesc").innerHTML = arrayVideo[idx][1];
    
    Play2Video(arrayVideo[idx][3], arrayVideo[idx][2], false);
}


function delete2MinVideo(id)
{
    if (ConfirmMsg())
    {
        document.getElementById("recid").value = id;
        minvlist.submit();
        return true;
    }
    else
    {
        return false;
    }
}

function edit2MinVideo(id)
{
    window.open("minvideoadd.php?recid=" + id, "editminv", "");
}

function addphotoform()
{
    var phh = document.all.phs.value;
    nwin = window.open("/upload/uploadphoto.php?ctrl=Add&type=MinVideo&ph="+phh,"add","height=475,width=550,resizable=no,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,left=100,top=100");
}