<!--

//Check Browser Language

var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage

//cut down to first 2 chars of country code
var lang = lang.substr(0,2)

// english
if (lang == "en")
window.location.replace('english/index_eng.htm')

// spanish (add or remove copies of 2 lines below as needed)
else if (lang == "es")
window.location.replace('spanish/index_spain.htm')

// if none of above (default to English or any other)
else
window.location.replace('spanish/index_spain.htm')

//-->