// JavaScript Document

function showVideo1() {
	
	document.getElementById('videoContainer1').style.display = "block";
	document.getElementById('videoContainer2').style.display = "none";
	
	var s1 = new SWFObject("/flash/videoplayer/player.swf","ply","320","272","9","#FFFFFF");
		s1.addParam("allowfullscreen","true");
		s1.addParam("allowscriptaccess","always");
		s1.addParam("flashvars","file=/video/BATC-People-200k.flv&skin=/flash/videoplayer/stylish.swf&bufferlength=10&autostart=true");
		s1.write("videoContainer1");
	
}


function showVideo2() {
	
	document.getElementById('videoContainer1').style.display = "none";
	document.getElementById('videoContainer2').style.display = "block";
	
	var s2 = new SWFObject("/flash/videoplayer/player.swf","ply","320","272","9","#FFFFFF");
		s2.addParam("allowfullscreen","true");
		s2.addParam("allowscriptaccess","always");
		s2.addParam("flashvars","file=/video/Testimonials-200k.flv&skin=/flash/videoplayer/stylish.swf&bufferlength=10&autostart=true");
		s2.write("videoContainer2");
	
}