// JavaScript Document

function goToPage(form){
	
	if(form.langSel.options[0].selected){
	 	window.location="../english/index.html";	
	}else if(form.langSel.options[1].selected){
		window.location="../chinese/index.html";	
	}
	
}



