// +----------------------------------------------------------------------+
// | 2ms Lichtenvoorde                                                    |
// | Copyright (c) 2003 2ms. All rights reserved.                         |
// +----------------------------------------------------------------------+

/******************************************************************************/
// Developers notes
// Developer:  Peter Wessels
// Developer:  Berry Lakerink
// Date:       26-4-2003 16:46

/******************************************************************************/

//--------------------------------------------
// Popup window
//--------------------------------------------
//function popup()
//{
//	Window.open("view_popup.php")
//}

//--------------------------------------------
// Set the help bar status
//--------------------------------------------
function help(msg)
{
   if (typeof(document.editform.helpbox)=="object")
   {
	   document.editform.helpbox.value = msg;
	}
}

//--------------------------------------------
// Check the max lenght of a field
//--------------------------------------------
function maxlen(waarde,len) 
{ 
   if ((waarde.value.length+1 > len)&&(len!=0)) { 
      waarde.value = waarde.value.substr(0,len+1); 
      return false; 
   } 
} 