/**
*	Load a streaming FLV file into a player
**/
function LoadVideo(filename, width, height, target, token)
{
	var flashvars = {};
	flashvars.linkfromdisplay = "false";
	flashvars.autostart = "false";
	flashvars.height = height + 20;
	flashvars.width = width; 
	flashvars.volume = "75";
	flashvars.repeat = "false";
	flashvars.displayheight = height;
	flashvars.displaywidth = width;
	flashvars.screencolor = 'FFFFFF';
	flashvars.image = 'lovefromholland.jpg';
	if (token != '')
	{
		token = '&token=' + token;
	}
	flashvars.file = "http://" + escape("rrr.sz.xlcdn.com/?user=mailfemale_tv&file=" + filename + "&type=streaming&service=wowza" + token + "&output=xspf&playlist=xml");
	var params = {};
	params.menu = "true";
	params.allowscriptaccess = "always";
	params.allowfullscreen = "true";
	var attributes = {};
	attributes.id = target;
	attributes.name = target;
	swfobject.embedSWF("/assets/swf/jwplayer.swf", target, width, height + 20, "8","expressInstall.swf", flashvars, params, attributes);
}

// ----------------------------------------------