// JavaScript Document



function setVideo (name)
	{
	mediaDiv = document.getElementById('mainMedia');
	mediaDiv.innerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"width="400" height="310" title="MJB Video Display"><param name="movie" value="flash/videoplayerV2.swf"></param><param name="allowFullScreen" value="true"></param><param name=FlashVars value="videoURL=../work/'+ name +'.flv"></param><param name="quality" value="high"></param><embed src="flash/videoplayerV2.swf?videoUrl=../work/'+ name +'.flv"quality="high"pluginspage="http://www.macromedia.com/go/getflashplayer"allowFullScreen="true"type="application/x-shockwave-flash"width="400" height="310"FlashVars="videoURL=../work/'+ name +'.flv" ></embed></object>';
	}
	
function setImage (name)
	{
	mediaDiv = document.getElementById('mainMedia');
	mediaDiv.innerHTML= '<img src="work/' + name + '.jpg" />';
	}