// JavaScript Document

/*
>\s+<  -   removes all space between ><
>\s+  -   removes all space after >
>\n\s+  -   removes all space after >\n
\s{2,}   -   \s = a space {x,} x represents number of times it appears minimum
*/


function otherSolutionsShow () {
	document.getElementById('otherOptions0').style.display='';
	document.getElementById('otherOptions1').style.display='';
	document.getElementById('otherOptions2').style.display='';
	document.getElementById('otherOptions3').style.display='';
}
