// JavaScript Document
function showVideo(video,image,container)
{
//alert(video);
var path ="file="+video+"&image="+image+"\"";

var s1 = new SWFObject("./video/player.swf","ply","428","238","9","#FFFFFF");
s1.addParam("allowfullscreen","true");
s1.addParam("allowscriptaccess","always");
s1.addParam("flashvars",path);
s1.write(container);
/*
var so = new SWFObject("./video/player.swf", "ply", "428", "238", "9", "#FF6600");
		so.addVariable("flashVarText", "this is passed in via FlashVars"); // this line is optional, but this example uses the variable and displays this text inside the flash movie
		so.useExpressInstall(path);
		so.write(container);
		*/
}

