function showFilm()
{
  obj = document.getElementById('film');
  
  if (obj.selectedIndex > 0)
  {
    window.open("asset/flash/512KbpsFLVs/film.php?id=" + obj.options[obj.selectedIndex].value + "&name=" + escape(obj.options[obj.selectedIndex].text), 
              null,			  "channelmode=no,directories=no,fullscreen=no,height=600,width=848,location=no,menubar=0,resizable=no,scrollbars=0,status=0,titlebar=yes,toolbar=no",
			  true);
  }
  else
    alert("You haven't chosen a film. Try again.");
}

function showFilmById(id, title)
{
    window.open("asset/flash/512KbpsFLVs/film.php?id=" + id + "&name=" + escape(title), 
              null,			  "channelmode=no,directories=no,fullscreen=no,height=600,width=848,location=no,menubar=0,resizable=no,scrollbars=0,status=0,titlebar=yes,toolbar=no",
			  true);
}
