
function getFlashMovie(movieName)
 	{
  	var isIE = navigator.appName.indexOf("Microsoft") != -1;
  	return (isIE) ? window[movieName] : document[movieName];
 	}
 
 
function stop_flash_video()
 	{getFlashMovie("vlog").sendTextToFlash();}
 
function select_video(vid_filename,vid_title)
 	{getFlashMovie("vlog").sendVideoToFlash(vid_filename,vid_title);}
	
	
	
function show_flash()
	{
		show_div('flash_video');
		show_div('video_div_btn');
		show_div('video_select_header')
		change_opacity('main_content_area', 30);
	}
function hide_flash()
	{
 
		hide_div('flash_video');
		hide_div('video_div_btn');
		hide_div('video_select_header')
		change_opacity('main_content_area', 99);
		stop_flash_video();
		select_video('','')
		
	}
