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%'><iframe src='http://player.vimeo.com/video/35290580?title=0&amp;byline=0&amp;portrait=0' width='800' height='450' frameborder='0' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><br><br><a href='#' onclick='return clicker();'>CLOSE VIDEO</a></td></tr></table>";
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
	}
	return false;
}
