
function PlayFlash(video)
{ var fname;
  if(video==1) fname="/videos/farming.flv"; 
  if(video==2) fname="/videos/microbusiness.flv"; 
  if(video==3) fname="/videos/preschool.flv";
  if(video==4) fname="/videos/water.flv";
  if(video==5) fname="/videos/animal.flv";
  if(video==6) fname="/videos/volunteer.flv";

flashembed("videoLayer", 
	
		{
			src:'http://www.sustainablecambodia.org/videos/FlowPlayerDark.swf',
			width: 400, 
			height: 290
		},
		
		/*
			second argument is Flowplayer specific configuration. See full list:
			http://flowplayer.org/player/configuration.html
		*/
		{config: {   
			autoPlay: true,
			autoBuffering: true,
			controlBarBackgroundColor:'0x9BA89E',
			initialScale: 'orig',
			loop: false,
			videoFile: fname

		}} 
	);
} // PlayFlash
