function commercial(mode) {
	document.getElementById('video-overlay').onclick = function() { commercial('hide'); 	} 
	if (mode == "show")
	{
		var newdiv = document.createElement('div');
		newdiv.setAttribute('id','flashcontent_2');
		newdiv.innerHTML = '<a href="http://www.adobe.com/products/flashplayer/" onclick="commercial(\'hide\');" target="_blank"><img src="images/alternate_movieplayer.gif" width="277" height="266" border="0" alt="" /></a>';
		document.getElementById('video').appendChild(newdiv);


		document.getElementById('video-overlay').style.display = '';
		document.getElementById('video').style.display = '';
		var so = new SWFObject("swf/chrysal_leafshine.swf", "Chrysal Leafshine", "280", "270", "8", "#FFFFFF");
		so.addParam("wmode", "transparent");
		so.addParam("allowScriptAccess", "always");
		so.addParam("menu","0");
		so.write("flashcontent_2");
	}

	if (mode == "hide")
	{
		document.getElementById('video-overlay').style.display = 'none';
		document.getElementById('video').style.display = 'none';
		var obj=document.getElementById("video");
		obj.removeChild(obj.firstChild);
	}
}