function writeEmailLink (account, domain, linkClass)
{
	document.write('<a href="mailto:' + account + '@' + domain + '" class="' + linkClass + '">' + account + '@' + domain + '</a>');
}

function showMore (id)
{
	var _button = $('feature-more-' + id);
	var _txtBox = $('accordion-box-' + id);
	_button.style.display = 'none';
	new Fx.Reveal(_txtBox, 
		{
			mode: 'vertical'
		}).reveal();
}

function hideMore (id)
{
	var _button = $('feature-more-' + id);
	var _txtBox = $('accordion-box-' + id);
	
	new Fx.Reveal(_txtBox, 
		{
			mode: 'vertical',
			onHide: function ()
			{
				_button.style.display = 'block';
			}
		}).dissolve();
}

function switchHomeContent(i)
{
	var head1 = $('home-head-1');
	var head2 = $('home-head-2');
	var txt1 = $('home-txt-1');
	var txt2 = $('home-txt-2');
	if (i==2)
	{
		head1.style.display = 'none';
		head2.style.display = 'block';
		txt1.style.display = 'none';
		txt2.style.display = 'block';
	}
	else
	{
		head2.style.display = 'none';
		head1.style.display = 'block';
		txt2.style.display = 'none';
		txt1.style.display = 'block';
	}
}

function openNewsletter ()
{
	var nlw = window.open("newsletter.php","nlwindow","status=1, toolbar=0, location=0, width= 480, height= 580, resizable=0, menubar=0");
	nlw.focus();
}
