// JavaScript Document
function registerNow()
{
	if (document.getElementById('registroDiv').style.display=='none')
	{
		$("#registroDiv").fadeIn('slow');
		scroll(0,450);
	}
	else 
	{
		$("#registroDiv").fadeOut('slow');
		scroll(0,0);
	}
	return false;
}