function CheckIfVideoTab()
{

	var current_tab = document.getElementById( 'current_tab' );
	
	if( current_tab )
	{

		if( current_tab.value == 'videogallery' )
		{
			var flash_wrapper = document.getElementById( 'flash-wrapper' );
			var image_wrapper = document.getElementById( 'image-wrapper' );

			image_wrapper.style.display = 'none';
			flash_wrapper.style.display = 'block';
		}
	}
}

function StopVideo()
{
	var temp = document.getElementById( 'flash-wrapper' ).innerHTML;
	temp = temp.replace(/^\s+/,"");

	//temp = temp.replace(/[\s]/g, '');
	document.getElementById( 'flash-wrapper' ).innerHTML = temp;
} 


