
	//Function to select a language.
	function pickLanguage (theBox,pageId,itemId){
	
		if (theBox){
		
			if (theBox.value == "0"){
			
				alert ("Please select a language.");
			
			} else {
			
				window.location = "process.php?op=select_language&lang="+theBox.value+"&page_id="+pageId+"&item_id="+itemId;
			
			}
		
		}
	
	}
