// External JavaScript library for LanguageHandler (only required if using a SELECT form element)

// History:
// JM: 23AUG2002 - 12:30 -> library written

// Define variables
// var rootPath = "C:/DSSmith/Demes Logistics/"; // MUST end in a / character
var rootPath = "C:\Documents and Settings\Weaveworld Ltd\Desktop\WeaveWorld\DS Smith Websites\Demes Logistics/"; // MUST end in a / character

// Functions start here (do not edit)
function changeLanguage(ThisForm,LanguagePath) {
	if (LanguagePath!="#")  {
		if (document.location.protocol=="file:") {ThisForm.action=rootPath + LanguagePath + "index.htm"; ThisForm.submit()}
		else {ThisForm.action += LanguagePath; ThisForm.submit()}
		}
	}