﻿// JScript File


var VE_api = VE_getPlayerAPI("1.2");
    	
function GetThumb(myMoviePath, thumbStyle)
{
    document.write("<img style='" + thumbStyle + "' src='" + VE_api.getThumbnailURL(myMoviePath) + "'>")
}

function GetMoviePlayer(myMoviePath)
{
    VE_api.embedPlayer(myMoviePath, 350, 330, true, "", "", false, "", "");
}

function GetMoviePlayerWithSize(myMoviePath, width, height)
{
    VE_api.embedPlayer(myMoviePath, width, height, true, "", "", false, "", "");
}

function GetStopMoviePlayerWithSize(myMoviePath, width, height)
{
    VE_api.embedPlayer(myMoviePath, width, height, false, "", "", false, "", "");
}
