
/*
Function used to launch the media player
*/

function LaunchMediaPlayer(intMovieid)
	{
	window.open("library.php?movieid=" + intMovieid,"","toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=720px,height=550px,left=50px,top=50px");
	}
	
/*
Function used to launch the media player from the CMS system.
*/
function LaunchMediaPlayerCMS(strURL)
	{
	window.open(strURL,"","toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=720px,height=550px,left=50px,top=50px");
	}