

// 10About us,   20Fellowship,  30Cultural sector, 40Publication

function goMenu(no) {
    var url = "";
	
   		 if (no == 10) {
        url = "aboutus/prospectus.html";
		} else if (no == 11) {
       url = "aboutus/founder.html";
	    } else if (no == 12) {
       url = "aboutus/history_01.html";
	    } else if (no == 13) {
       url = "aboutus/directors.html";
	    } else if (no == 14) {
       url = "aboutus/activities.html";
	   } else if (no == 20) {
       url = "fellowship/introduction.html";
	   } else if (no == 21) {
       url = "fellowship/application.html";
	   } else if (no == 23) {
       url = "fellowship/successive.html";
	   } else if (no == 30) {
       url = "cultural/introduction.html";
    } else if (no == 31) {
       url = "cultural/committee.html";
	    } else if (no == 32) {
       url = "cultural/Winner.html";
	   } else if (no == 40) {
       url = "publication/introduction.html";
	    } else if (no == 41) {
       url = "publication/donation.html";
	    } else if (no == 42) {
       url = "";
    } else {
       url = "0.html";
    }
    location.href = url;

}

