function registerBrokerInfoRequest()
{
	postPage('brokerInfo', 'send_broker_info_request.php', null, null, 'registerBrokerInfoRequestResult');
}

function registerBrokerInfoRequestResult(strResult)
{
	if (strResult == 'OK')
	{
		showMsg('Din forespørsel er registrert');
		document.getElementById('brokerInfo').reset();
	}
	else
		showMsg(strResult);
}

