function openMovie(URL, title) 
{
	if (URL.indexOf("video/") > -1)
	{
		window.open("openMovie.html?asset=" + URL + "&title=" + title, "Long_Ago", "toolbar=no,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,scrolling=yes,resizable=yes,width=500,height=450");
	}
	else
	{
		window.open("openAsset.html?asset=" + URL + "&title=" + title, "Long_Ago", "toolbar=no,location=yes,directories=no,status=no,menubar=yes,scrollbars=no,scrolling=no,resizable=no,width=500,height=450");
	}
}
