// JavaScript Document

function email(where)
{
	window.open('mailto: ' + where + '@coaxialhost.com');
}

function display(what, style)
{
	if (x = document.getElementById(what))	x.style.display = style;
	if (x = document.getElementById(what+'_bottom')) x.style.display = style;	
}

function hide(what)
{
	display(what, 'none');
}

function hideall()
{
	$("#content > div").attr('style', 'display: none;');
	$("#bottomcontent > div").attr('style', 'display: none;');
}

function show(what)
{
	hideall();
	$('#' + what).fadeIn(1000);
	$('#' + what + '_bottom').fadeIn(1000);
}

