// JavaScript Document<!--
	function redirect()
{
	var f = document.login_form;
	var match = /([^@]+)@([^@]+\.[^@]{2,3})/.exec(f.horde_user.value);
	if (!match) {
		alert('U moet uw volledige emailadres invullen.');
		return false;
	}
	f.horde_user.value = match[1];
	f.action = 'http://webmail.' + match[2] + '/horde/login.php';
	return true;
}
//-->
