function clicker(){
	var thediv=document.getElementById('displaybox');
	if(thediv.style.display == "none"){
		thediv.style.display = "";
thediv.innerHTML = "<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'><p><b><a href='#' onMousDown='return clicker();'>CLOSE WINDOW</a></b></p><p><a href='http://www.nopalbloom.com/flowplayer/nopalea.flv' style='display:block;width:588px;height:368px' id='player'></a></p></td></tr></table>";
		flowplayer('player', 'http://nopalbloom.com/flowplayer/flowplayer-3.1.5.swf', {clip: {autoPlay: true, autoBuffering: true}});
                document.getElementById('rounded').style.display = "none";
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
                document.getElementById('rounded').style.display = "";
	}
	return false;
}
