function inlineVideo(video, vidWidth, vidHeight)
{
	loadVideo('videoShow', video, vidWidth, vidHeight);
	videoReady();
	return false;
}
function inlineVideo2(video, vidWidth, vidHeight)
{
	loadVideo('videoShow2', video, vidWidth, vidHeight);
	videoReady();
	return false;
}
function loadVideo(divID, vidFile, imgWidth, imgHeight)
{
	var flashvars = 
	{
		duration: 0,
		file: vidFile,
		bufferlength: 5,
		frontcolor: "716d6c",
		lightcolor: "716d6c",
		screencolor: "2b2b2b",
		autostart: "true",
		displayclick: "play",
		repeat: "none"
	}
	var params = 
	{
		wmode: "opaque",
		allowfullscreen:"true", 
		allowscriptaccess:"always"
	}
	var attributes =
	{
		id:"vid",
		name:"vid"
	}
	swfobject.embedSWF("/scripts/player.swf", divID, imgWidth, imgHeight, "9", '/scripts/expressInstall.swf', flashvars, params, attributes);
}

function videoReady()
{
	player = window.document['mpl'];
}