// JavaScript Document

	<!--
	function hideDiv(formname) { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
	document.getElementById(formname).style.display = 'none'; 
	} 
	else { 
	if (document.layers) { // Netscape 4 
	document.formname.display = 'none'; 
	} 
	else { // IE 4 
	document.all.formname.style.display = 'none'; 
	} 
	} 
	}
	
	function showDiv(formname) { 
	if (document.getElementById) { // DOM3 = IE5, NS6 
	document.getElementById(formname).style.display = 'block'; 
	} 
	else { 
	if (document.layers) { // Netscape 4 
	document.formname.display = 'block'; 
	} 
	else { // IE 4 
	document.all.formname.style.display = 'block'; 
	} 
	} 
	} 
	//-->

document.write('<link href="http://www.espindle.org/css/quizpopup.css" rel="stylesheet" type="text/css" />');
document.write('<div id="espindlequiz" style="display: none;">');
document.write('<a href="javascript:hideDiv(');
document.write("'espindlequiz'");
document.write(')"><div id="fade" class="faderstyle"></div></a>');
document.write('<div class="popup_block" style="margin: 0 0 0 -390px;">');
document.write('<div class="popup"><a href="javascript:hideDiv(');
document.write("'espindlequiz'");
document.write(')"><img src="http://www.espindle.org/images/icon_close.png" class="cntrl" title="Close"></a>');
document.write('<iframe src ="http://www.espindle.org/quizpopup.html" width="760" height="515" frameborder="0" scrolling="no" ></iframe>');
document.write('</div></div></div>');