1 function setupPoints(numberformat, wrongFormat) {
 
   2   decpoint = numberformat.substring((numberformat.substring(1, 2).match(/\.|\,/) ? 5 : 4), (numberformat.substring(1, 2).match(/\.|\,/) ? 6 : 5));
 
   3   if (numberformat.substring(1, 2).match(/\.|\,/)) {
 
   4     thpoint = numberformat.substring(1, 2);
 
   9   wrongNumberFormat = wrongFormat + " ( " + numberformat + " ) ";
 
  12 function setupDateFormat(setDateFormat, setWrongDateFormat) {
 
  13   dateFormat = setDateFormat;
 
  14   wrongDateFormat = setWrongDateFormat + " ( " + setDateFormat + " ) ";
 
  15   formatArray = new Array();
 
  16   if(dateFormat.match(/^\w\w\W/)) {
 
  17     seperator = dateFormat.substring(2,3);
 
  20     seperator = dateFormat.substring(4,5);
 
  24 function centerParms(width,height,extra) {
 
  25   xPos = (screen.width - width) / 2;
 
  26   yPos = (screen.height - height) / 2;
 
  28   string = "left=" + xPos + ",top=" + yPos;
 
  31     string += "width=" + width + ",height=" + height;
 
  36 function set_longdescription_window(input_name) {
 
  37   var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes";
 
  38   var name = document.getElementsByName(input_name)[0].value;
 
  40     "INPUT_ENCODING=UTF-8&" +
 
  41     "action=set_longdescription&" +
 
  42     "longdescription=" + encodeURIComponent(document.getElementsByName(input_name)[0].value) + "&" +
 
  43     "input_name=" + encodeURIComponent(input_name) + "&"
 
  44   window.open(url, "_new_generic", parm);
 
  47 function check_right_number_format(input_name) {
 
  48   if(decpoint && thpoint && thpoint == decpoint) {
 
  49     return show_alert_and_focus(input_name, wrongNumberFormat);
 
  51   var test_val = input_name.value;
 
  52   if(thpoint && thpoint == ','){
 
  53     test_val = test_val.replace(/,/g, '');
 
  55   if(thpoint && thpoint == '.'){
 
  56     test_val = test_val.replace(/\./g, '');
 
  58   if(decpoint && decpoint == ','){
 
  59     test_val = test_val.replace(/,/g, '.');
 
  61   var forbidden = test_val.match(/[^\s\d\(\)\-\+\*\/\.]/g);
 
  62   if (forbidden && forbidden.length > 0 ){
 
  63     return show_alert_and_focus(input_name, wrongNumberFormat);
 
  69     return show_alert_and_focus(input_name, wrongNumberFormat);
 
  74 function check_right_date_format(input_name) {
 
  75   if(input_name.value == "") {
 
  78   var matching = new RegExp(dateFormat.replace(/\w/g, '\\d') + "\$","ig");
 
  79   if(!(dateFormat.lastIndexOf("y") == 3) && !matching.test(input_name.value)) {
 
  80     matching = new RegExp(dateFormat.replace(/\w/g, '\\d') + '\\d\\d\$', "ig");
 
  81     if(!matching.test(input_name.value)) {
 
  82       return show_alert_and_focus(input_name, wrongDateFormat);
 
  86     if (dateFormat.lastIndexOf("y") == 3 && !matching.test(input_name.value)) {
 
  87       return show_alert_and_focus(input_name, wrongDateFormat);
 
  92 function validate_dates(input_name_1, input_name_2) {
 
  93   var tempArray1 = new Array();
 
  94   var tempArray2 = new Array();
 
  95   tempArray1 = getDateArray(input_name_1);
 
  96   tempArray2 = getDateArray(input_name_2);
 
  97   if(check_right_date_format(input_name_1) && check_right_date_format(input_name_2)) {
 
  98     if(!((new Date(tempArray2[0], tempArray2[1], tempArray2[2])).getTime() >= (new Date(tempArray1[0], tempArray1[1], tempArray1[2])).getTime())) {
 
  99       show_alert_and_focus(input_name_1, wrongDateFormat);
 
 100       return show_alert_and_focus(input_name_2, wrongDateFormat);
 
 102     if(!((new Date(tempArray2[0], tempArray2[1], tempArray2[2])).getTime() >= (new Date(1900, 1, 1)).getTime())) {
 
 103       show_alert_and_focus(input_name_1, wrongDateFormat);
 
 104       return show_alert_and_focus(input_name_2, wrongDateFormat);
 
 109 function getDateArray(input_name) {
 
 110   formatArray[2] = input_name.value.substring(dateFormat.indexOf("d"), 2);
 
 111   formatArray[1] = input_name.value.substring(dateFormat.indexOf("m"), 2);
 
 112   formatArray[0] = input_name.value.substring(dateFormat.indexOf("y"), (dateFormat.length == 10 ? 4 : 2));
 
 113   if(dateFormat.length == 8) {
 
 114     formatArray[0] += (formatArray[0] < 70 ? 2000 : 1900);
 
 119 function show_alert_and_focus(input_name, errorMessage) {
 
 121   alert(errorMessage + "\n\r\n\r--> " + input_name.value);
 
 126 function get_input_value(input_name) {
 
 127   var the_input = document.getElementsByName(input_name);
 
 128   if (the_input && the_input[0])
 
 129     return the_input[0].value;
 
 133 function set_cursor_position(n) {
 
 134   $('[name=' + n + ']').focus();
 
 137 function focussable(e) {
 
 138   return e && e.name && e.type != 'hidden' && e.type != 'submit' && e.disabled != true;
 
 141 function set_cursor_to_first_element(){
 
 142   var df = document.forms;
 
 143   for (var f = 0; f < df.length; f++)
 
 144     for (var i = 0; i < df[f].length; i++)
 
 145       if (focussable(df[f][i]))
 
 146         try { df[f][i].focus(); return } catch (er) { }
 
 149 function getElementByIndirectName(name){
 
 150   var e = document.getElementsByName(name)[0];
 
 151   if (e) return document.getElementsByName(e.value)[0];
 
 154 function focus_by_name(name){
 
 155   var f = getElementByIndirectName(name);
 
 157     set_cursor_position(f.name);
 
 163 $(document).ready(function () {
 
 164   // initialize all jQuery UI tab elements:
 
 165   $(".tabwidget").each(function(idx, element) { $(element).tabs(); });
 
 167   $('input').focus(function(){
 
 168     if (focussable(this)) window.focused_element = this;
 
 170   // legacy. sone forms install these
 
 171   if (typeof fokus == 'function') { fokus(); return; }
 
 172   if (focus_by_name('cursor_fokus')) return;
 
 173   set_cursor_to_first_element();
 
 176 $('form').submit(function(){
 
 177   if (window.focused_element)
 
 178     document.forms[0].cursor_fokus.value = window.focused_element.name;