function openWindow(page, width, height)
{

	var leftPos = (screen.width - width) / 2;
    var topPos = (screen.height - height - 50) / 2;

	msgWindow = window.open('','popup','width='+ width +',height=' + height + ',top=' + topPos + ',left=' + leftPos + ',scrollbars=yes');
	msgWindow.location.href = page;
}

function naarPortal()
{
  window.opener.location.href = 'http://www.profinca.nl/portal.aspx';
  if (window.opener.progressWindow)
 {
    window.opener.progressWindow.close()
  }
  window.close();
}

function CopyAdres()
{
	if (this.document.forms[0].elements['cbOvernemen'].checked)
		{
        this.document.forms[0].elements['tbVestigingsadres'].value = this.document.forms[0].elements['tbPostadres'].value;
        this.document.forms[0].elements['tbVestigingsadresPostcode'].value = this.document.forms[0].elements['tbPostadresPostcode'].value;
        this.document.forms[0].elements['tbVestigingsadresPlaats'].value = this.document.forms[0].elements['tbPostadresPlaats'].value;
        this.document.forms[0].elements['tbVestigingsadresProvincie'].value = this.document.forms[0].elements['tbPostadresProvincie'].value;
        this.document.forms[0].elements['ddlVestigingsadresLand'].selectedIndex = this.document.forms[0].elements['ddlPostadresLand'].selectedIndex;
		}
	else
		{
        this.document.forms[0].elements['tbVestigingsadres'].value = '';
        this.document.forms[0].elements['tbVestigingsadresPostcode'].value = '';
        this.document.forms[0].elements['tbVestigingsadresPlaats'].value = '';
        this.document.forms[0].elements['tbVestigingsadresProvincie'].value = '';
		}
}
