function displayStatusMsg(msgStr)
{
  window.status = msgStr;
  return true;
} 

function set_init_focus()
{
  // zet focus op eerste veld.
  for (var i = 0; i < document.forms[0].elements.length; i++)
  {
    if(document.forms[0].elements[i].type != 'hidden')
    {
      document.forms[0].elements[i].focus();
      break;
    }
  }
}

function VoorkomenFraming()
{
	if (top.frames.length != 0)
  {
		top.location = self.document.location;
	}
}

function generalwin(url)
{
	popupWin = window.open(url,'General','width=600,height=500,scrollbars=yes,resizable');
	popupWin.focus();
}
