function checkBBG()
{
	var postal = document.getElementById('postal_code').value;
	document.location.href='mover/webshop.php?postal='+ postal;
}

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);
}
