var timeout;
function checkqt(category, level, movName, id, w, h,auto, larger)
{
  var printme = "<img width=\"100\" height=\"20\" border=\"0\" src=\"images/spacer.gif\"/><br>";
  printme += "<OBJECT classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\"";
	printme += "codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\"";
	printme += "width=\"" + w + "\" height=\"" + h + "\"";
	printme += "id=\"videoClip\" >";
	printme += "<PARAM name=\"src\" value=\"" + category + "/" + level + "/" + movName + ".mov\">";
	printme += "<param name=\"autoplay\" value=\"" + auto + "\" />";
	printme += "<param name=\"BGCOLOR\" value=\"#000000\" />";
	printme += "<param name=\"controller\" value=\"false\" />";
	printme += "<EMBED width=\"" + w + "\" height=\"" + h + "\"";
	printme += "src=\"" + category + "/" + level + "/" + movName + ".mov\"";
	printme += "name=\"videoClip\"";
	printme += "BGCOLOR = \"#000000\"";	
	printme += "enablejavascript=\"true\"";
	printme += "controller = \"false\"";
	printme += "autostart = \"" + auto + "\">";
	printme += "</EMBED>";
	printme += "</OBJECT>";	
//	if(larger)
//	{
//		var b = "<a id=\"downloadMovie\" href=\"getvideo.php?cat=" + category + "&clip=" + movName + "\"></a>";
//		printme += b;
//	}	
	id.innerHTML = printme;
	
	movieLoaded=true;
	
//	window.setTimeout("loadMov('"+category+"','"+level+"','"+movName+"')", 500);
//	timeout = window.setTimeout("showButton(true)", 15000);
}

function loadMov(category, level, movName)
{
		document.videoClip.SetURL("http://www.davedrez.com/" + category + "/" + level + "/" + movName + ".mov");
		document.videoClip.SetControllerVisible(false);
		document.videoClip.SetBgColor("#000000");
}

function showButton(show)
{
	if(show)
	{
		document.links[0].innerHTML = "<img id=\"downloadButton\" src=\"images/downloadClip.png\" name=\"Image1\" width=\"340\" height=\"15\" border=\"0\" id=\"Image1\" onmouseover=\"MM_swapImage('Image1','','/images/downloadClipO.png',1)\" onmouseout=\"MM_swapImgRestore()\" />";
	}
	else
	{
		document.links[0].innerHTML = "  ";
		document.links[0].href = " ";
	}
	return true;
}
function changeMovie(category, level, movName, id, w, h,auto, larger)
{
	if(!movieLoaded)
	{
		checkqt(category, level, movName, id, w, h,auto, larger);
	}
	else
	{
		document.videoClip.SetURL("http://www.davedrez.com/" + category + "/" + level + "/" + movName + ".mov");
		document.videoClip.SetControllerVisible(false);
		document.videoClip.SetBgColor("#000000");
		window.clearTimeout(timeout);
//		if(showButton(false))
//			document.links[0].href = "getvideo.php?cat=" + category + "&clip=" + movName;
//		if(larger)
//			timeout = window.setTimeout("showButton(true)", 15000);	
	}
}

function qtobjectID(category, level, movName, id, w, h,auto)
{
	var printme = "<OBJECT classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\"";
	printme += "codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\"";
	printme += "width=\"" + w + "\" height=\"" + h + "\"";
	printme += "id=\"videoClip\" >";
	printme += "<PARAM name=\"src\" value=\"" + category + "/" + level + "/" + movName + ".mov\">";
	printme += "<param name=\"autoplay\" value=\"" + auto + "\" />";
	printme += "<param name=\"controller\" value=\"false\" />";
	printme += "<EMBED width=\"" + w + "\" height=\"" + h + "\"";
	printme += "src=\"" + category + "/" + level + "/" + movName + ".mov\"";
	printme += "name=\"videoClip\"";
	printme += "enablejavascript=\"true\"";
	printme += "controller = \"false\"";
	printme += "autostart = \"" + auto + "\">";
	printme += "</EMBED>";
	printme += "</OBJECT>";
	document.getElementById(id).innerHTML = printme;
}