<!--
var fake = '<?xml encoding="UTF-8"?>';
var error_msg = new Array();

error_msg['contact-administrator'] = 'Contact your system administrator!';
error_msg['can-not-be-empty'] = 'can not be empty';
error_msg['is-not-valid-number'] = 'is not a valid NUMBER';
error_msg['is-not-valid-date'] = 'is not a valid DATE in format';
error_msg['is-not-valid-time'] = 'is not a valid TIME in format';
error_msg['is-not-valid-email'] = 'is not a valid e-mail.';
error_msg['is-not-valid-ip'] = 'is not a valid IP.';
error_msg['retype-password'] = 'Password does not match. Please retype it again.';
error_msg['invalid-number-separators'] = 'Group separator and decimal symbol are the same.'
error_msg['invalid-number-format'] = 'Invalid NUMBER format';
error_msg['invalid-date-format'] = 'Invalid DATE format';
error_msg['are-you-sure'] = 'Are you sure';

var months		= new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" );
var monthShort	= new Array("Jan",     "Feb",      "Mar",   "Apr",   "May", "Jun",  "Jul",  "Aug",    "Sep",       "Oct",     "Nov",      "Dec"      );
var days		= new Array(31,        29,         31,      30,      31,    30,     31,     31,       30,          31,        30,         31         );
var dow 		= new Array('Sun','Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');

//-->