/*
	JavaScript Document
	Embed Video Player
*/
function playVideo(){
	if(document.getElementById){
		
		// Get Flash DIV element
		flashObj				= document.getElementById("flash");
		
		// Get FLV path
		FLV						= flashObj.innerHTML;
		nextPage				= FLV.replace(/\/.*/,"").toLowerCase() + ".asp";
		FLV						= "../FLV/" + FLV;
		
		// Clear Flash inner HTML
		flashObj.innerHTML		= "";
		
		// Embed Flash
		embedFlash('allowfullscreen=true','data=Media/SWF/videoPlayer.swf','flashvars=videoFLV:' + FLV + ';nextPage:' + nextPage + ';','height=100%','loop=false','parent=flash','play=true','quality=best','width=100%','wmode=opaque');
		
	} else {
		// Legacy Browsers
		return false;
	}
}