
<!-- //


// Returns the start of the path to the flash object, but does NOT include a video file path
function get_flash_path()
{
	return "NEW/flash/flvplayer.swf?autostart=false&file=";
}

function convert_flash_id_name(str)
{
	//string_data.replace("_", "-"); // Replace all "_" with "-"
	//alert(string_data);
	
	//var str="Visit _ Microsoft!"
	return str.replace(/_/,"-");
}

// Performs the hiding and showing of each movie based on what the user clicks on :)
function select_this_movie(the_object) // the_object comes in as "this"
{
	//object = document.getElementById(the_object);
	//obj.style.display='';
	
	alert(the_object.style); // Debugging
	//the_object.style = 'test';
	alert(the_object.style); // Debugging
	//hide_block(convert_flash_id_name(get_innerHTML('current_movie_id'))); // convert_flash_id_name(ID));	// Hide the current movie object
	//write_HTML_to_DIV(get_innerHTML(object.id.value), 'current_movie'); // Write the current movie name to the display for the user to see
	//write_HTML_to_DIV(object.id.value, 'current_movie_id'); // Write the current movie ID into the html div tag, acts as a memory :)
	//show_block(convert_flash_id_name(object.id.value)); // Show the current movie object
	
	//alert(object.class); 
	
	//object.style.display="className='menu_text'"; // Make the movie selection bold in the movie list
}

// -->

