function fadeInForm(form)
{
	$("#" + form).fadeIn("def");
}

function fadeOutForm(form)
{
	$("#" + form).fadeOut("def");
}

function showForm(form)
{
	document.getElementById(form).style.display="block";
}
