var flashDone = false;

function doFlash() {
	
	var useNode = null;
	
	for (var i=0; i<document.getElementById('expandFlash').childNodes.length; i++) {
		if (document.getElementById('expandFlash').childNodes[i].tagName == "DIV") {
			useNode = document.getElementById('expandFlash').childNodes[i];
			break;
		}
	}
	
	if (!flashDone) {
		var span = document.createElement('p');
		span.style.textAlign = 'right';
		span.style.padding = '5px';
		span.style.marginRight = '15px';
		span.innerHTML = 'To order a copy of the Clipper brand film DVD click <a href="/about/contact/brandfilm">here</a>';
		
		if (useNode)
			useNode.appendChild(span);
	}
		
	var so = new SWFObject("/local/swf/player.swf", "mymovie", "720", "430", "9");
	so.addParam("wmode", "transparent");
	so.addVariable("skin", "/local/swf/SkinOverAllNoVolNoCaptionNoFull.swf");
	so.addVariable("src", "/local/videos/clipper.flv");
	so.write("flashcontent2");
	flashDone = true;
}

function expandForFlash() {
	new Effect.Morph('expandFlash', {style: {height: '515px'}});
	doFlash();
}

function closeFilm() {
	new Effect.Morph('expandFlash', {style: {height: '0px'},afterFinish:closeFinish});
}

function closeFinish(e) {
	document.getElementById('flashcontent2').innerHTML = '';
}