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%'><table align='center' cellpadding='0' cellspacing='0'><tr><td colspan='2' align='right' valign='bottom'><img src='http://www.bigmachines.com/images/interior/video-player-box_03.gif' width='547' height='33' /></td><td align='left' valign='top'><a href='#' onclick='return clicker();' alt='Click to Close Video'><img src='http://www.bigmachines.com/images/interior/video-player-box_04.gif' width='17' height='33' border='0' /></a></td><td valign='bottom' align='left'><img src='http://www.bigmachines.com/images/interior/video-player-box_05.gif' width='33' height='33' /></td></tr><tr><td valign='top' align='right' bgcolor='#FFFFFF'><img src='http://www.bigmachines.com/images/interior/video-player-box_06.gif' width='10' height='433' /></td><td align='left' valign='top'><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0'  width='537' height='433'><param name='src' value='http://www.bigmachines.com/flash/bigmachines-intro-final2.swf'><param name='bgcolor' value='#ffffff'><embed src='http://www.bigmachines.com/flash/bigmachines-intro-final2.swf' autoplay='true' type='application/x-shockwave-flash' pluginspage='http://www.adobe.com/go/getflashplayer' height='433' width='537' bgcolor='#ffffff'></embed></object></td><td align='left' valign='top'><img src='http://www.bigmachines.com/images/interior/video-player-box_08.gif' width='17' height='433' /></td><td valign='top' align='left'><img src='http://www.bigmachines.com/images/interior/video-player-box_09.gif' width='33' height='433' /></td></tr><tr><td colspan='3' valign='top'><img src='http://www.bigmachines.com/images/interior/video-player-box_10.gif' width='563' height='15' /></td><td>&nbsp;</td></tr></table></td></tr></table>"
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
	}
	return false;
}

