/*
On loading the form, this function is called to update the default value of the hidden form field 'jsenabled'. The default is false and, if JavaScript is enabled, this function will set the form field to true.
*/
function detectjs()
{
	document.forms.loginform.jsenabled.value = "true";
}
