﻿/**
 * @author mryan
 * 
 * Used on Sharn Vet to destroy and create video instances without a page load.
 * 
 */

function videoTrigger(theVideo, theTitle, theDesc)
{
	
	document.getElementById("videotitle").innerHTML = theTitle;
	
	document.getElementById("videotitle").style.display = "block";

	document.getElementById("shortdesc").innerHTML = theDesc;
	
	//document.getElementById("shortdesc").innerHTML.
	
	//alert(theVideo);
	document.getElementById("testimonials").innerHTML = "";
	var soTestimonials = new SWFObject("/flash/flvplayer.swf", "thing", "360", "310", "8", "#FFFFFF");
	soTestimonials.addVariable("FLVPath", theVideo);
	soTestimonials.addParam("wmode", "transparent");
	soTestimonials.write("testimonials");
}
