function InsertMovie(theSrc,iWidth,iHeight)
{
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" ');
	document.write('codebase="http://www.apple.com/qtactivex/qtplugin.cab" ');
	document.write('width="' + iWidth + '" height="'+ iHeight + '" align="right">\n');
	document.write('<param NAME="src" ');
	document.write('VALUE="' + theSrc + '">\n');
	document.write('<embed SRC="' + theSrc + '" ');
	document.write('width="' + iWidth + '" height="'+ iHeight + '" align="right" type="video/quicktime" ');
	document.write('pluginspage="http://www.apple.com/quicktime/download/" />\n');              
	document.write('</object>\n');
}

function HighlightTop(iItem)
{
	if(iItem && typeof iItem == "number")
	{
		document.getElementById("tn_" + iItem).className = "selected";
	}	
};

function HighlightElement(iItem)
{
	if(iItem && typeof iItem == "number")
	{
		document.getElementById("emt_" + iItem).className = "selected";
	}	
};



window.onload = function()
{
	//place onLoad here

}