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%'><object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab' width='640' height='375'><param name='src' value='http://www.77agency.com/wp-content/themes/77agency_theme/images/VTS.mp4'><param name='bgcolor' value='#000000'><embed src='http://www.77agency.com/wp-content/themes/77agency_theme/images/VTS.mp4' autoplay='true' pluginspage='http://www.apple.com/quicktime/download/' height='375' width='640' bgcolor='#000000'></embed></object><br><br><a id='close-video' href='#' onclick='return clicker();'>CLOSE WINDOW</a></td></tr></table>";
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
	}
	return false;
}