// MYNONIWEB JAVASCRIPT lang.js VERSION 1.0

	// Store URLs in an array. These must match the elements in the
	//  pulldown. In this example, the first element is the pulldown
	//  says 'Select a URL', thus langSelect_URLs[0] contains an empty
	//  string. Note in this case that the name of the URL array
	//  is mapped to that of the Menu. This is assumed in the
	//  function below.


var langSelect_URLs = new Array();
langSelect_URLs[0] = "";
langSelect_URLs[1] = "http://www.mynoni.net/indexen.php"; //  angol  //
langSelect_URLs[2] = "http://www.mynoni.net/indexbg.php"; //  bulgár  //
langSelect_URLs[3] = "http://www.mynoni.net/indexcz.php"; //  cseh  //
langSelect_URLs[4] = "http://www.mynoni.net/indexda.php"; //  dán  //
langSelect_URLs[5] = "http://www.mynoni.net/indexfi.php"; //  finn  //
langSelect_URLs[6] = "http://www.mynoni.net/indexfl.php"; //  flamand  //
langSelect_URLs[7] = "http://www.mynoni.net/indexfr.php"; //  francia  //
langSelect_URLs[8] = "http://www.mynoni.net/indexgr.php"; //  görög  //
langSelect_URLs[9] = "http://www.mynoni.net/indexcr.php"; //  horvát  //
langSelect_URLs[10] = "http://www.mynoni.net/indexjp.php"; //  japán  //
langSelect_URLs[11] = "http://www.mynoni.net/indexch.php"; //  kínai  //
langSelect_URLs[12] = "http://www.mynoni.net/indexko.php"; //  koreai  //
langSelect_URLs[13] = "http://www.mynoni.net/indexpl.php"; //  lengyel  //
langSelect_URLs[14] = "http://www.mynoni.net/indexli.php"; //  litván  //
langSelect_URLs[15] = "http://www.mynoni.net"; //  magyar  //
langSelect_URLs[16] = "http://www.mynoni.net/indexge.php"; //  német  //
langSelect_URLs[17] = "http://www.mynoni.net/indexno.php"; //  norvég  //
langSelect_URLs[18] = "http://www.mynoni.net/indexit.php"; //  olasz  //
langSelect_URLs[19] = "http://www.mynoni.net/indexru.php"; //  orosz  //
langSelect_URLs[20] = "http://www.mynoni.net/indexpo.php"; //  portugál  //
langSelect_URLs[21] = "http://www.mynoni.net/indexro.php"; //  román  //
langSelect_URLs[22] = "http://www.mynoni.net/indexsp.php"; //  spanyol  //
langSelect_URLs[23] = "http://www.mynoni.net/indexsw.php"; //  svéd  //
langSelect_URLs[24] = "http://www.mynoni.net/indexsc.php"; //  szerb  //
langSelect_URLs[25] = "http://www.mynoni.net/indexsl.php"; //  szlovák  //
langSelect_URLs[26] = "http://www.mynoni.net/indexslo.php"; //  szlovén  //
langSelect_URLs[27] = "http://www.mynoni.net/indexth.php"; //  thai  //
langSelect_URLs[28] = "http://www.mynoni.net/indextr.php"; //  török  //
langSelect_URLs[29] = "http://www.mynoni.net/indexua.php"; //  ukrán  //
langSelect_URLs[30] = "http://www.mynoni.net/indexvi.php"; //  vietnámi  //

//NEW langS
langSelect_URLs[31] = "http://www.mynoni.net/"; //  langNAME  //




	// Function to jump to a URL in a <select> menu
	//  In this case, the name of the array containing the URLs
	//  is determined based on the name of the pulldown menu.
	function jumpToURL(formName,menuName) {
	 var obj = eval("document." + formName + "." + menuName);
	 var index = obj.selectedIndex;
	 var url = eval(menuName + "_URLs[" + index + "]");
	 if (url != "") {
	   location.href=url;
	 }
	}


