function displayVersion() {
	showWindow('versionContainer');
	new Ajax.Updater('versionContainer', 'help/userguide/versionhistory.htm' );
}
function displayFaq() {
	showWindow('faqContainer');
	new Ajax.Updater('faqContainer', 'help/userguide/faq.html' );
}
function showWindow(name,content) {
	if (content) {$(name).innerHTML = content;}
	$A($$('.filterRow select')).each(function(elem){Element.hide(elem);})
	$(name).style.display='block';
}
function hideWindow(name) {
	$A($$('.filterRow select')).each(function(elem){Element.show(elem);})
	var elem = $(name)
	elem.style.display='none';
}
function forgotPwd(){
	$('sbmForgotPwd').disable();
	new Ajax.Request('forgotPassword.php',{
		 method: 'post',
		 evalscripts: true,
		 parameters: Form.serialize('forgotpwd'),
		 onComplete: function(i){$('helpBox').innerHTML = i.responseText;}
	});
	return false;
}
