function getr(g) {
	g.style.position = 'absolute';
	g.style.top = '0';
	g.style.left = '0';
	g.style.width = '100%';
	g.style.height = '100%';
	g.style.display = 'block';
	g.innerHTML = '&nbsp;';
	g.className = 'jibber';
	return g;
}
function pop_lightmail2() {
	var h = getr(document.createElement('div'));
	var g = getr(document.createElement('div'));
	g.style.backgroundColor = 'black';
	h.style.color='white';
	jQuery(h).fadeOut('fast',function() {
		jQuery(g).fadeTo('fast',0.1,function() {
			g.style.display = 'block';
			document.body.appendChild(g);
			document.body.appendChild(h);
			jQuery(h).load('/mailinglist.shtml',null,function() {
				jQuery(g).fadeTo('fast', 0.6);
				jQuery(h).fadeIn('fast');
				document.forms.subform.elements.realname.focus();
			});
		});
	});
}
function del_lightmail2() {
	jQuery('.jibber').remove();
}

function pop_lightmail() {
	window.setTimeout(pop_lightmail2,10);
	return false;
}
function del_lightmail() {
	window.setTimeout(del_lightmail2,10);
	return false;
}