function divToggle(divId, speed)
{
	if (!speed)
	{
		speed = 0;
	}
	
	if ($('#' + divId).is(':visible'))
	{
		$('#' + divId).hide(speed);
	}
	else
	{
		$('#' + divId).show(speed);
	}
}

function goToUrl(url)
{
	window.location = url;
}

