

//javascript:displayVideo('resume.swf|640|480|Sample Production (Resume)');

function displayVideo(args)
{
	var html = "";
	var argsArray = args.split("|");
	
	var fileName = argsArray[0];
	var width = argsArray[1];
	var height = argsArray[2];
	var title = argsArray[3];
	
	html += "<div id=\"currentVideoPlayer\" style=\"visibility:hidden;background-color:white;\"><center>";
		html += "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+width+"' height='"+height+"' id='systems_interface' align='middle'>";
		html += "<param name='allowScriptAccess' value='sameDomain' />";
		html += "<param name='movie' value='media/videos/"+fileName+"' /><param name='quality' value='best' /><param name='bgcolor' value='#ffffff' /><embed src='media/videos/"+fileName+"' quality='best' bgcolor='#ffffff' width='"+width+"' height='"+height+"' name='systems_interface' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";
		html += "</object>";
	html += "</center></div>";
	
	LTSun.showWindow({
		size: "large",
		html: html,
		cancelAction: "closeVideo();",
		cancelLabel: "Close Window",
		okStyle: "display:none",
		okLabel: " ",
		okAction: "closeVideo();",
		afterFinish: function()
		{
			document.getElementById('currentVideoPlayer').style.visibility='visible';
		}
	});
}

function closeVideo()
{
	document.getElementById("currentVideoPlayer").innerHTML = "";
	LTSun.hideWindow({});
}

