// JavaScript Document
function selectThis(n) {
	document.getElementById("radio" + n).checked = true;
	document.getElementById("brochure").value = n
	}
	
function downloadBrochure() {
a = document.forms["events"]["brochure"]
	 if(a.value=="0") {
		window.open('/dynamicdata/data/docs/3-04incoterms.pdf','brochure','location=no'); 
		} else if(a.value=="1") {
		window.open('/dynamicdata/data/docs/classificationWebShopSeries1.pdf','brochure','location=no'); 
		} else if(a.value=="2") {
		window.open('/dynamicdata/data/docs/4-07entryreview.pdf','brochure','location=no'); 
		} else {
		alert("A selection is required");
		document.forms["events"]["event"][0].focus();
		}
}
function checkForm() {
a = document.forms["events"]["brochure"]
	if (a.value == "") {
		alert("A selection is requrired");
		document.forms["events"]["event"][0].focus();
		return false;		
	}
return true;

}
