<!--

// START DHTML section show/hide
function showHideAnswer()
	{
		var numericID = this.id.replace(/[^\d]/g,'');
		var obj = document.getElementById('a' + numericID);
		if(obj.style.display=='block'){
			obj.style.display='none';
		}else{
			obj.style.display='block';
		}		
	}
	
function initShowHideContent()
{
	var divs = document.getElementsByTagName('DIV');
	for(var no=0;no<divs.length;no++){
		if(divs[no].className=='question'){
			divs[no].onclick = showHideAnswer;
		}	
		
	}	
}

window.onload = initShowHideContent;
// END DHTML section show/hide



// START Hide email address
function dontBugMe() {
	em1 = "&#109;&#097;&#105;&#108;&#116;&#111;&#058;";
	em2 = "&#105;&#110;&#102;&#111;";
	em3 = "&#64;";
	em4 = "&#98;&#101;&#116;&#116;&#101;&#114;&#112;&#114;&#111;&#106;&#101;&#99;&#116;&#115;&#46;&#99;&#111;&#109;&#46;&#97;&#117;";
	
	outputEm = '<a href="' + em1 + em2 + em3 + em4 + '">' + em2 + em3 + em4 + '</a>';
	return outputEm;
} 	
// END Hide email address
	
 // -->
