<!--
function attach_file( p_script_url ) {
      script = document.createElement( 'script' );
      script.src = "../../css/"+p_script_url;
      document.getElementsByTagName( 'head' )[0].appendChild( script );
}
function ShowList(series,season) {
	t_filename = 'tantalus_list.php?t_series=' + series +'&t_season=' + season;
	attach_file(t_filename);
	ShowCast(series);
	return 0;
}
function ShowSeries() {
	t_filename = 'tantalus_series.php';
	attach_file(t_filename);
	return 0;
}
function ShowSeason(series) {
	t_filename = 'tantalus_season.php?t_series=' + series;
	attach_file(t_filename);
	return 0;
}
function ShowCast(series) {
	t_filename = 'tantalus_cast.php?t_series=' + series;
	attach_file(t_filename);
	return 0;
}
function ShowLogo(series) {
	t_filename = 'tantalus_logo.php?t_series=' + series;
	attach_file(t_filename);
	return 0;
}
function NewSeries(series)
{
	ShowSeason(series);
	ShowList(series,1);
	ShowCast(series);
	ShowLogo(series);
	return 0;
}

function NewSeries0(series)
{
	ShowSeason(series);
	ShowList(series,0);
	ShowCast(series);
	ShowLogo(series);
	return 0;
}

function NewSeriesTest(series)
{
	ShowSeries(); // show a full series list for testing
	ShowSeason(series);
	ShowList(series,1);
	ShowCast(series);
	ShowLogo(series);
	return 0;
}
-->