<!-- Begin
function checkCheckBox(f) {
	if (f.agree.checked == false )
	{
		alert('Please accept terms and conditions to get to the sequences.');
		document.getElementById('seq2get').innerHTML="&nbsp;";
		return false;
	} else {
	        //var container = document.getElementById("seq2get");
		//container.removeChild(container.childNodes[0]); // in case something is there
		//var newdiv = document.createElement("div"); // creation of new div is required by stupid IE
		//newdiv.innerHTML = "<ul><li><a href='seq2download/BarleySequences.zip'>download <b>barley</b> sequences</a><li><a href='seq2download/WheatSequences.zip'>download <b>wheat</b> sequences</a></ul>";
		//container.appendChild(newdiv);
		
		// line below works everywhere except stupid IE
	        // Grzegorz used <p> for 'seq2get' tag. getElementById works on IE only for div tag. Puthick
		document.getElementById('seq2get').innerHTML="<ul><li><a href='http://www.diversityarrays.com/seq2download/BarleySequences.zip'>download <b>barley</b> sequences</a><li><a href='http://www.diversityarrays.com/seq2download/WheatSequences.zip'>download <b>wheat</b> sequences</a></ul>";
		return false;
	}
}
//  End -->
