/**
 *
 * @access public
 * @return void
 **/
function showMap()
{
	document.getElementById('form-content').style.display = 'none';
	document.getElementById('map-content').style.display = 'block';
}
/**
 *
 * @access public
 * @return void
 **/
function showForm()
{
	document.getElementById('map-content').style.display = 'none';
	document.getElementById('form-content').style.display = 'block';
}

/**
 *
 * @access public
 * @return void
 **/
function sendingMail()
{
	document.getElementById('form').style.display = 'none';
	document.getElementById('sending-mail').style.display = 'block';
}

/**
 *
 * @access public
 * @return void
 **/
function formError(error)
{
	document.getElementById('sending-mail').style.display = 'none';
	document.getElementById('formError').innerHTML = error;
	document.getElementById('form').style.display = 'block';
	if (navigator.appName != 'Microsoft Internet Explorer')
		document.getElementById('formError').style.display = 'block';
	else
		alert(error);
}

/**
 *
 * @access public
 * @return void
 **/
function mailSent()
{
	document.getElementById('sending-mail').style.display = 'none';
	document.getElementById('mail-sent').style.display = 'block';
}