function languageChange(selectItem)
{
	var value = selectItem.value.toLowerCase();
	var path = value.substr(0, value.length - 1);
	var language = value.substring(value.length -1);
	var url = "";

	if(language == "s")	
	{
		url = path + "spanish.htm";
		newwindow = window.open(url,'offworld','top=100,left=100,width=630,height=500,directories=no,resizable=yes,status=yes,menubar=yes,location=no,scrollbars=yes,toolbar=no'); 
		newwindow.focus();	
		//location.href = path + "spanish.htm";
	}
	else
	{
		return false;
		//location.href = path;
	}
}