function closeMovie()
{
	if (document.getElementById)
	{
		var movie = document.getElementById("movie");
		movie.innerHTML = "";
		movie.style.display = "none";
	}
}
function playMovie(moviefile)
{
  win = window.open("movie.html?" + moviefile,"","top=20,left=20,height=500,width=720,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes");
}
function playMovie2(moviefile)
{
	if (document.getElementById)
	{
		var movie = document.getElementById("movie");
		movie.style.zIndex= 1000;
		movie.style.position = "absolute";
		movie.style.left = 0;
		movie.style.top = 0;
		movie.style.width = "720px";
		movie.style.height = "550px";
		movie.style.border = "1px solid black";
		
		var innerHTML = "<div style='background-color: blue; color: white; font-family: arial; font-size: 12px; padding: 3px;'><a style='color: white; font-weight: bold; text-decoration: none' href='javascript:closeMovie()'>Close</a></div>";
		innerHTML += '<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="Movie1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="720" height="480">	\
				  <param name="movie" value="' + moviefile + '">									\
				  <param name="quality" value="high">												\
				  <param name="bgcolor" value="#FFFFFF">											\
				  <param name=play value=true>														\
				  <param name=loop value=true>														\
				  <embed name="Movie1" src="' + moviefile + '" quality="high" bgcolor="#FFFFFF"		\
				    width="720" height="480"														\
				    type="application/x-shockwave-flash"											\
				    play=true																		\
				    pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">	\
				  </embed>																			\
			</object>';
			
		movie.style.display = "block";
		movie.innerHTML = innerHTML;
	}
}

function playMovie3(moviefile)
{
	if (document.getElementById)
	{
		var movie = document.getElementById("movie");
		movie.style.zIndex= 1000;
		movie.style.position = "absolute";
		movie.style.left = 0;
		movie.style.top = 0;
		movie.style.width = "720px";
		movie.style.height = "500px";
		movie.style.border = "1px solid black";
		
		var innerHTML = "<div style='background-color: blue; color: white; font-family: arial; font-size: 12px; padding: 3px;'><a style='color: white; font-weight: bold; text-decoration: none' href='javascript:closeMovie()'>Close</a></div>";
		innerHTML += '<embed name="Movie1" src="' + moviefile + '" quality="high" bgcolor="#FFFFFF"		\
				    width="720" height="480"														\
				    play=true																		\
				    autoplay=true>																	\
				  </embed>';
			
		movie.style.display = "block";
		movie.innerHTML = innerHTML;
	}
}

