
	function goThere() {
	   	 var x=document.exams.examselect.options[document.exams.examselect.selectedIndex].value;	
	    location.href=x;
	    return;

    	}



function examsList() {
	document.write("<form class=\"nopadding\" name=\"exams\"><select name=\"examselect\" onChange=\"goThere()\">");
	document.write("<option value=\"#\">Select Exam</option>");
	document.write("<option value=\"/education/certification-accreditation/certified-fabric-administrator/index.page\">Certified Fabric Administrator</option>");
         document.write("<option value=\"/education/certification-accreditation/certified-fabric-professional/index.page\">Certified Fabric Professional</option>");
	document.write("<option value=\"/education/certification-accreditation/certified-fabric-designer/index.page\">Certified Fabric Designer</option>");
	document.write("<option value=\"/education/certification-accreditation/certified-san-manager/index.page\">Certified SAN Manager</option>");
        document.write("<option value=\"/education/certification-accreditation/certified-architect-ficon/index.page\">Certified Architect for FICON</option>");
	document.write("<option value=\"/education/certification-accreditation/accredited_server_connectivity/index.page\">Accredited Server Connectivity Specialist </option>");
	document.write("<option value=\"/education/certification-accreditation/certified-layer-4-7-engineer/index.page\">Certified Layer 4-7 Engineer</option>");
	document.write("<option value=\"/education/certification-accreditation/certified-layer-4-7-professional/index.page\">Certified Layer 4-7 Professional</option>");
	document.write("<option value=\"/education/certification-accreditation/certified-network-engineer/index.page\">Certified Network Engineer</option>");
        document.write("<option value=\"/education/certification-accreditation/certified-network-professional/index.page\">Certified Network Professional</option>");
        document.write("<option value=\"/education/certification-accreditation/accredited-data-center-specialist/index.page\">Accredited Data Center Specialist</option>");
        document.write("<option value=\"/education/certification-accreditation/accredited-FCoE-specialist/index.page\">Accredited FCoE Specialist</option>");
	document.write("<option value=\"/education/certification-accreditation/accredited_internetworking/index.page\">Accredited Internetworking Specialist</option>");
        document.write("<option value=\"/education/certification-accreditation/accredited_support/index.page\">Accredited Technical Support Specialist</option>");
               
        document.write("<option value=\"/education/certification-accreditation/exam-information/index.page\">Exam Information (Certification Exams)</option>");	
        document.write("<option value=\"/education/certification-accreditation/accreditation-exam-information/index.page\">Exam Information (Accreditation Exams)</option>");
	document.write("</select></form>");
}