Better DatePicker. Better cool theme.
[fa-stable.git] / includes / ui / ui_view.inc
1 <?php
2
3 include_once($path_to_root . "/admin/db/voiding_db.inc");
4
5 //--------------------------------------------------------------------------------------
6
7 function get_supplier_trans_view_str($type, $trans_no, $label="")
8 {
9         global $path_to_root, $use_popup_windows;
10
11         $viewer = "";
12         if ($type == systypes::po())
13                 $viewer = "view_po.php";
14         elseif ($type == 20)
15                 $viewer = "view_supp_invoice.php";
16         elseif ($type == 21)
17                 $viewer = "view_supp_credit.php";
18         elseif ($type == 22)
19                 $viewer = "view_supp_payment.php";
20         elseif ($type == 25)
21                 $viewer = "view_grn.php";
22         else
23                 return null;
24
25         if ($label == "")
26                 $label = $trans_no;
27
28         if ($viewer != "")
29         {
30                 if ($use_popup_windows)
31                         $preview_str = "<a target='_blank' href='$path_to_root/purchasing/view/$viewer?trans_no=$trans_no' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >$label</a>";
32                 else    
33                         $preview_str = "<a target='_blank' href='$path_to_root/purchasing/view/$viewer?trans_no=$trans_no'>$label</a>";
34         }       
35         else
36                 $preview_str = $label;
37
38         return $preview_str;
39 }
40
41 //--------------------------------------------------------------------------------------
42
43 function get_gl_view_str($type, $trans_no, $label="", $force=false)
44 {
45         global $path_to_root, $use_popup_windows;
46
47         if (!$force && !user_show_gl_info())
48                 return "";
49
50         if ($label == "")
51                 $label = _("GL");
52         if ($use_popup_windows)
53                 $gl_view = "<a target='_blank' href='$path_to_root/gl/view/gl_trans_view.php?type_id=$type&trans_no=$trans_no' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >$label</a>";
54         else
55                 $gl_view = "<a target='_blank' href='$path_to_root/gl/view/gl_trans_view.php?type_id=$type&trans_no=$trans_no'>$label</a>";
56
57         return $gl_view;
58 }
59
60 //--------------------------------------------------------------------------------------
61
62 function get_gl_view_str_cell($type, $trans_no, $label="")
63 {
64         $str = get_gl_view_str($type, $trans_no, $label);
65         if ($str != "")
66                 return "<td>$str</td>";
67 }
68
69 //--------------------------------------------------------------------------------------
70
71 function get_customer_trans_view_str($type, $trans_no, $label="")
72 {
73         global $path_to_root, $use_popup_windows;
74
75         $viewer = "";
76         if ($type == 10)
77                 $viewer = "view_invoice.php";
78         elseif ($type == 11)
79                 $viewer = "view_credit.php";
80         elseif ($type == 12)
81                 $viewer = "view_receipt.php";
82         elseif ($type == 30)
83                 $viewer = "view_sales_order.php";
84         else
85                 return null;
86
87         if ($label == "")
88                 $label = $trans_no;
89
90         if ($viewer != "")
91         {
92                 if ($use_popup_windows)
93                         $preview_str = "<a target='_blank' href='$path_to_root/sales/view/$viewer?trans_no=$trans_no' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >$label</a>";
94                 else
95                         $preview_str = "<a target='_blank' href='$path_to_root/sales/view/$viewer?trans_no=$trans_no'>$label</a>";
96         }               
97         else
98                 $preview_str = $label;
99
100         return $preview_str;
101 }
102
103 //--------------------------------------------------------------------------------------
104
105 function get_banking_trans_view_str($type, $trans_no, $label="")
106 {
107         global $path_to_root, $use_popup_windows;
108
109         $viewer = "";
110
111         if ($type == 4)
112                 $viewer = "bank_transfer_view.php";
113         elseif ($type == 1)
114                 $viewer = "gl_payment_view.php";
115         elseif ($type == 2)
116                 $viewer = "gl_deposit_view.php";
117         elseif ($type == 0)
118                 $viewer = "";
119         else
120                 return null;
121
122         if ($label == "")
123                 $label = $trans_no;
124
125         if ($viewer != "")
126         {
127                 if ($use_popup_windows)
128                         $preview_str = "<a target='_blank' href='$path_to_root/gl/view/$viewer?trans_no=$trans_no' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >$label</a>";
129                 else    
130                         $preview_str = "<a target='_blank' href='$path_to_root/gl/view/$viewer?trans_no=$trans_no'>$label</a>";
131         }               
132         else
133                 $preview_str = $label;
134
135         return $preview_str;
136 }
137
138 //--------------------------------------------------------------------------------------
139
140 function get_inventory_trans_view_str($type, $trans_no, $label="")
141 {
142         global $path_to_root, $use_popup_windows;
143
144         $viewer = "";
145
146         if ($type == systypes::inventory_adjustment())
147                 $viewer = "view_adjustment.php";
148         elseif ($type == systypes::location_transfer())
149                 $viewer = "view_transfer.php";
150         else
151                 return null;
152
153         if ($label == "")
154                 $label = $trans_no;
155
156         if ($viewer != "")
157         {
158                 if ($use_popup_windows)
159                         $preview_str = "<a target='_blank' href='$path_to_root/inventory/view/$viewer?trans_no=$trans_no' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >$label</a>";
160                 else    
161                         $preview_str = "<a target='_blank' href='$path_to_root/inventory/view/$viewer?trans_no=$trans_no'>$label</a>";
162         }               
163         else
164                 $preview_str = $label;
165
166         return $preview_str;
167 }
168
169 //--------------------------------------------------------------------------------------
170
171 function get_manufacturing_trans_view_str($type, $trans_no, $label="")
172 {
173         global $path_to_root, $use_popup_windows;
174
175         $viewer = "";
176
177         if ($type == 28)
178                 $viewer = "wo_issue_view.php";
179         elseif ($type == 29)
180                 $viewer = "wo_production_view.php";
181         elseif ($type == systypes::work_order())
182                 $viewer = "work_order_view.php";
183         else
184                 return null;
185
186         if ($label == "")
187                 $label = $trans_no;
188
189         if ($viewer != "")
190         {
191                 if ($use_popup_windows)
192                         $preview_str = "<a target='_blank' href='$path_to_root/manufacturing/view/$viewer?trans_no=$trans_no' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >$label</a>";
193                 else    
194                         $preview_str = "<a target='_blank' href='$path_to_root/manufacturing/view/$viewer?trans_no=$trans_no'>$label</a>";
195         }
196         else
197                 $preview_str = $label;
198
199         return $preview_str;
200 }
201
202 //--------------------------------------------------------------------------------------
203
204 function get_dimensions_trans_view_str($type, $trans_no, $label="")
205 {
206         global $path_to_root, $use_popup_windows;
207
208         $viewer = "";
209
210         if ($type == 40)
211                 $viewer = "view_dimension.php";
212         else
213                 return null;
214
215         if ($label == "")
216                 $label = $trans_no;
217
218         if ($viewer != "")
219         {
220                 if ($use_popup_windows)
221                         $preview_str = "<a target='_blank' href='$path_to_root/dimensions/view/$viewer?trans_no=$trans_no' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >$label</a>";
222                 else    
223                         $preview_str = "<a target='_blank' href='$path_to_root/dimensions/view/$viewer?trans_no=$trans_no'>$label</a>";
224         }               
225         else
226                 $preview_str = $label;
227
228         return $preview_str;
229 }
230
231 //--------------------------------------------------------------------------------------
232
233 function get_trans_view_str($type, $trans_no, $label="")
234 {
235         $view_str = get_customer_trans_view_str($type, $trans_no, $label);
236         if ($view_str != null)
237                 return $view_str;
238
239         $view_str = get_supplier_trans_view_str($type, $trans_no, $label);
240         if ($view_str != null)
241                 return $view_str;
242
243         $view_str = get_banking_trans_view_str($type, $trans_no, $label);
244         if ($view_str != null)
245                 return $view_str;
246
247         $view_str = get_inventory_trans_view_str($type, $trans_no, $label);
248         if ($view_str != null)
249                 return $view_str;
250
251         $view_str = get_manufacturing_trans_view_str($type, $trans_no, $label);
252         if ($view_str != null)
253                 return $view_str;
254
255         $view_str = get_dimensions_trans_view_str($type, $trans_no, $label);
256         if ($view_str != null)
257                 return $view_str;
258
259         return null;
260 }
261
262 //--------------------------------------------------------------------------------------
263
264 function exchange_rate_display($from_currency, $to_currency, $date_, $buttons=true)
265 {
266         if ($from_currency != $to_currency)
267         {
268                 if ($buttons && isset($_POST['get_rate']))      
269                 {
270                         $comp_currency = get_company_currency();
271                         if ($from_currency == $comp_currency)
272                                 $currency = $to_currency;
273                         else
274                                 $currency = $from_currency;
275                         $rate = get_ecb_rate($currency);
276                         if (get_date_exchange_rate($currency, $date_))
277                                 update_exchange_rate($currency, $date_, $rate, $rate);
278                         else    
279                                 add_exchange_rate($currency, $date_, $rate, $rate);
280                         if ($from_currency == $comp_currency)
281                                 $rate = 1 / $rate;
282                 }       
283                 else
284                         $rate = get_exchange_rate_from_to($to_currency, $from_currency, $date_);
285                 $rate = number_format2($rate, user_exrate_dec());
286         label_row(_("Exchange Rate:"),"1 " . $from_currency . " = " .  $rate . " " . $to_currency .
287                         ($buttons?"  " . submit('get_rate',_("Get"), false):""));
288         }
289 }
290
291 //--------------------------------------------------------------------------------------
292
293 function is_voided_display($type, $id, $label)
294 {
295         global $table_style;
296         $void_entry = get_voided_entry($type, $id);
297
298         if ($void_entry == null)
299                 return false;
300
301         start_table("width=50% $table_style");
302         echo "<tr><td align=center><font color=red>$label</font><br>";
303         echo "<font color=red>" . _("Date Voided:") . " " . sql2date($void_entry["date_"]) . "</font><br>";
304         if (strlen($void_entry["memo_"]) > 0)
305                 echo "<center><font color=red>" . _("Memo:") . " " . $void_entry["memo_"] . "</font><br>";
306         echo "</td></tr>";
307         end_table(1);
308
309         return true;
310 }
311
312 //--------------------------------------------------------------------------------------
313
314 function comments_display_row($type, $id)
315 {
316         $comments = get_comments($type, $id);
317         if ($comments and db_num_rows($comments)) 
318         {
319                 echo "<tr><td colspan=15>";
320         while ($comment = db_fetch($comments)) 
321         {
322                 echo $comment["memo_"] . "<br>";
323         }
324                 echo "</td></tr>";
325         }
326 }
327
328 //--------------------------------------------------------------------------------------
329
330 function get_comments_string($type, $type_no)
331 {
332         $str_return = "";
333         $result = get_comments($type, $type_no);
334         while ($comment = db_fetch($result)) 
335         {
336                 if (strlen($str_return))
337                         $str_return = $str_return . " \n";
338                 $str_return = $str_return . $comment["memo_"];
339         }
340         return $str_return;
341 }
342
343 //--------------------------------------------------------------------------------------
344
345 function view_stock_status($stock_id, $description=null)
346 {
347         global $path_to_root;
348         if ($description)
349                 //hyperlink_params_separate($path_to_root . "/inventory/inquiry/stock_status.php", (user_show_codes()?$stock_id . " - ":"") . $description, "stock_id=$stock_id");
350                 $preview_str = "<a target='_blank' href='$path_to_root/inventory/inquiry/stock_status.php?stock_id=$stock_id' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >". (user_show_codes()?$stock_id . " - ":"") . $description."</a>";
351         else
352                 //hyperlink_params_separate($path_to_root . "/inventory/inquiry/stock_status.php", $stock_id, "stock_id=$stock_id");
353                 $preview_str = "<a target='_blank' href='$path_to_root/inventory/inquiry/stock_status.php?stock_id=$stock_id' onclick=\"javascript:openWindow(this.href,this.target); return false;\" >$stock_id</a>";
354         echo $preview_str;      
355 }
356
357 function view_stock_status_cell($stock_id, $description=null)
358 {
359         echo "<td>";
360         view_stock_status($stock_id, $description);
361         echo "</td>";
362 }
363
364 //--------------------------------------------------------------------------------------
365
366 function display_debit_or_credit_cells($value)
367 {
368         if ($value > 0)
369         {
370                 amount_cell($value);
371                 label_cell("");
372         }       
373         elseif ($value < 0)
374         {
375                 label_cell("");
376                 amount_cell(abs($value));
377         }       
378         else
379         {
380                 //label_cell("");
381                 amount_cell(0);
382                 label_cell("");
383         }
384 }
385
386 //--------------------------------------------------------------------------------------
387
388 function display_customer_trans_tax_details($tax_items, $columns)
389 {
390     while ($tax_item = db_fetch($tax_items)) 
391     {
392         $tax = number_format2($tax_item['amount'],user_price_dec());
393         if ($tax_item['included_in_price'])
394                 label_row(_("Included") . " " . $tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%) " .
395                         _("Amount") . ": $tax", "", "colspan=$columns align=right", "align=right");
396         else
397                 label_row($tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%)",
398                         $tax, "colspan=$columns align=right", "align=right");
399     }
400 }
401
402 //--------------------------------------------------------------------------------------
403
404 function display_supp_trans_tax_details($tax_items, $columns)
405 {
406     while ($tax_item = db_fetch($tax_items)) 
407     {
408         $tax = number_format2(abs($tax_item['amount']),user_price_dec());
409         if ($tax_item['included_in_price'])
410                 label_row(_("Included") . " " . $tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%) " .
411                         _("Amount:") . ": $tax", "colspan=$columns align=right", "align=right");
412         else
413                 label_row($tax_item['tax_type_name'] . " (" . $tax_item['rate'] . "%)",
414                         $tax, "colspan=$columns align=right", "align=right");
415     }
416 }
417
418 //--------------------------------------------------------------------------------------
419
420 function display_edit_tax_items($taxes, $columns)
421 {
422         $total = 0;
423
424     foreach ($taxes as $taxitem) 
425     {
426         if ($taxitem['included_in_price']) 
427         {
428                 label_row(_("Included") . " " . $taxitem['tax_type_name'] . " (" . $taxitem['rate'] . "%) " .
429                         _("Amount:") . " " . number_format2($taxitem['Value'],user_price_dec()), "", "colspan=$columns align=right", "align=right");
430         } 
431         else 
432         {
433                 label_row($taxitem['tax_type_name'] . " (" . $taxitem['rate'] . "%)",
434                         number_format2($taxitem['Value'],user_price_dec()), "colspan=$columns align=right", "align=right");
435                 $total +=  $taxitem['Value'];
436         }
437     }
438
439     return $total;
440 }
441
442 //--------------------------------------------------------------------------------------
443
444 function display_footer_exit()
445 {
446         global $path_to_root;
447         br(2);
448         end_page();
449         exit;
450 }
451
452 //--------------------------------------------------------------------------------------
453
454 function display_allocations($alloc_result, $total)
455 {
456         global $table_style;
457
458         if (!$alloc_result || db_num_rows($alloc_result) == 0)
459                 return;
460
461     display_heading2(_("Allocations"));
462
463     start_table("$table_style width=80%");
464     
465     $th = array( _("Type"), _("Number"), _("Date"), _("Total Amount"),
466         _("Left to Allocate"), _("This Allocation"));
467         table_header($th);
468     $k = $total_allocated = 0;
469
470     while ($alloc_row = db_fetch($alloc_result))
471     {
472
473         alt_table_row_color($k);
474
475         label_cell(systypes::name($alloc_row['type']));
476         label_cell(get_trans_view_str($alloc_row['type'],$alloc_row['trans_no']));
477         label_cell(sql2date($alloc_row['tran_date']));
478         amount_cell($alloc_row['Total']);
479         //amount_cell($alloc_row['Total'] - $alloc_row['PrevAllocs'] - $alloc_row['amt']);
480         amount_cell($alloc_row['Total'] - $alloc_row['amt']);
481         amount_cell($alloc_row['amt']);
482         end_row();
483
484         $total_allocated += $alloc_row['amt'];
485     }
486     start_row();
487         label_cell(_("Total Allocated:"), "align=right colspan=5");
488         amount_cell($total_allocated);
489         end_row();
490         start_row();
491     label_cell(_("Left to Allocate:"), "align=right colspan=5");
492     amount_cell($total - $total_allocated);
493     end_row();
494
495     end_table(1);
496 }
497
498 //--------------------------------------------------------------------------------------
499
500 function display_allocations_from($person_type, $person_id, $type, $type_no, $total)
501 {
502         switch ($person_type) 
503         {
504                 case payment_person_types::customer() :
505                         $alloc_result = get_allocatable_to_cust_transactions($person_id, $type_no, $type);
506                         display_allocations($alloc_result, $total);
507                         return;
508                 case payment_person_types::supplier() :
509                         $alloc_result = get_allocatable_to_supp_transactions($person_id, $type_no, $type);
510                         display_allocations($alloc_result, $total);
511                         return;
512         }
513 }
514
515 function get_js_go_back()
516 {
517         $js = "\n<script type=\"text/javascript\">\n"
518                 . "<!--\n"
519                 . "function goBack()\n"
520                 . "{\n"
521                 . "     if (window.history.length <= 1)\n"
522                 . "      window.close();\n"
523                 . "     else\n" 
524                 . "      window.history.go(-1);\n"                      
525                 . "}\n"
526                 . "-->\n"
527                 . "</script>\n";
528         return $js;
529 }       
530
531 function get_js_open_window($width, $height)
532 {
533         $js = "\n<script type=\"text/javascript\">\n"
534                 . "<!--\n"
535                 . "function openWindow(url, title)\n"
536                 . "{\n"
537                 . " var left = (screen.width - $width) / 2;\n"
538                 . " var top = (screen.height - $height) / 2;\n"
539                 . " window.open(url, title, 'width=$width,height=$height,left='+left+',top='+top+',screenX='+left+',screenY='+top+',status=no,scrollbars=yes');\n"
540                 . "}\n"
541                 . "-->\n"
542                 . "</script>\n";
543         return $js;
544 }
545
546 function get_js_form_entry($edit_name, $sel_name, $next_name)
547 {
548         $js = "\n<script type=\"text/javascript\">\n"
549                 . "<!--\n"
550                 . "function recalcAccounts()\n"
551                 . "{\n"
552                 . "     var myForm = document.forms[0];\n"
553                 . "     var len = myForm.$sel_name.length;\n"
554                 . "     var txt;\n"
555                 . "     var ac = myForm.$edit_name.value;\n"
556                 . "     var i;\n"
557                 . "     myForm.$sel_name.options[myForm.$sel_name.selectedIndex].selected = false;\n"
558                 . "     for (i = 0; i < len; i++)\n"
559                 . "     {\n"
560                 . "             txt = myForm.$sel_name.options[i].text;\n"
561                 . "             if (txt.indexOf(ac) == 0)\n"
562                 . "             {\n"
563                 . "                     myForm.$sel_name.options[i].selected = true;\n"
564                 . "                     break;\n"
565                 . "             }\n"
566                 . "     }\n"
567                 . "}\n"
568                 . "function setAccount(p, s)\n"
569                 . "{\n"
570                 . "     var myForm = document.forms[0];\n"
571                 . " if (p == 0 && myForm.$edit_name.value == \"\")\n"
572                 . "             return true;\n"
573                 . "     myForm.$edit_name.value = myForm.$sel_name.options[myForm.$sel_name.selectedIndex].value;\n"
574                 . " if (s)\n"
575                 . "  myForm.submit();\n"
576                 . "     myForm.$next_name.focus();\n"
577                 . "     return true;\n"
578                 . "}\n"
579                 . "-->\n"
580                 . "</script>\n";
581         return $js;     
582 }
583
584 function get_js_set_focus($name)
585 {
586         $js = "\n<script type=\"text/javascript\">\n"
587                 . "<!--\n"
588                 . "function setFocus()\n"
589                 . "{\n"
590                 . "     document.forms[0].$name.focus();\n"
591                 . "}\n"
592                 . "-->\n"
593                 . "</script>\n";
594         return $js;     
595 }
596
597 function get_js_png_fix()
598 {
599         $js = "<script type=\"text/javascript\">\n"
600                 . "function fixPNG(myImage)\n" 
601                 . "{\n"
602                 . " var arVersion = navigator.appVersion.split(\"MSIE\")\n"
603                 . " var version = parseFloat(arVersion[1])\n"
604         . " if ((version >= 5.5) && (version < 7) && (document.body.filters))\n" 
605         . " {\n"
606         . "  var imgID = (myImage.id) ? \"id='\" + myImage.id + \"' \" : \"\"\n"
607                 . "  var imgClass = (myImage.className) ? \"class='\" + myImage.className + \"' \" : \"\"\n"
608                 . "  var imgTitle = (myImage.title) ?\n" 
609                 . "    \"title='\" + myImage.title  + \"' \" : \"title='\" + myImage.alt + \"' \"\n"
610                 . "  var imgStyle = \"display:inline-block;\" + myImage.style.cssText\n"
611                 . "  var strNewHTML = \"<span \" + imgID + imgClass + imgTitle\n"
612         . "    + \" style=\\\"\" + \"width:\" + myImage.width\n" 
613         . "    + \"px; height:\" + myImage.height\n" 
614         . "    + \"px;\" + imgStyle + \";\"\n"
615         . "    + \"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader\"\n"
616         . "    + \"(src=\'\" + myImage.src + \"\', sizingMethod='scale');\\\"></span>\"\n"
617                 . "  myImage.outerHTML = strNewHTML\n"    
618         . " }\n"
619                 . "}\n"
620                 . "</script>\n";
621         return $js;
622 }       
623
624 function get_js_date_picker()
625 {
626         global $dateseps;
627         //global $dateseps $path_to_root;
628         
629         //$encoding = "iso-8859-1";     // character encoding
630         //$encoding = $_SESSION['language']->encoding;  // character encoding
631         //$dir = "ltr";                         // left to right, right to left
632         //$dir = $_SESSION['language']->dir;    // left to right, right to left
633         $how = user_date_format();                              // 0 = us/ca, 1 = eu, au, nz, 2 = jp, sw
634         $sep = $dateseps[user_date_sep()];              // date separator
635         $wstart = ($how == 0 ? 0 : 1);                  // weekstart (sun = 0, mon = 1)
636
637         $js = "<style>
638 #CCIFrame { display: none; left: 0px; position: absolute; top: 0px; height: 250px; width: 250px; z-index: 99;}
639 #CC { position:absolute; background-color:#FFF; margin:0; padding:0; display:none; z-index: 100;}
640 #CC table { font-family: arial, verdana, helvetica, sans-serif;font-size: 8pt; border-left: 1px solid #336; border-right: 1px solid #336;}
641 #CC th { font-weight: normal;}
642 #CC th a { font-weight: normal; text-decoration: none; color: #FFF; padding: 1px;}
643 #CC td { text-align: center;}
644 #CC .header { background-color: #336;}
645 #CC .weekday { background-color: #DDD; color: #000;}
646 #CC .weekend { background-color: #FFC; color: #000;}
647 #CC .current { border: 1px solid #339; background-color: #336; color: #FFF;}
648 #CC .weekday,#CC .weekend,#CC .current { display: block; text-decoration: none; border: 1px solid #FFF; width: 2em;}
649 #CC .weekday:hover,#CC .weekend:hover,#CC .current:hover { color: #FFF; background-color: #336; border: 1px solid #999;}
650 #CC .previous { text-align: left;}
651 #CC .next { text-align: right;}
652 #CC .previous,#CC .next { padding: 1px 3px 1px 3px; font-size: 1.4em;}
653 #CC .previous a,#CC .next a { color: #FFF; text-decoration: none; font-weight: bold;}
654 #CC .title { text-align: center; font-weight: bold; color: #FFF;}
655 #CC .empty { background-color: #CCC; border: 1px solid #FFF;}
656 </style>
657 ";
658         $js .= "<script type=\"text/javascript\">
659 <!--\n
660 function positionInfo(object) {
661   var p_elm = object;
662   this.getElementLeft = getElementLeft;
663   function getElementLeft() {
664     var x = 0;
665     var elm;
666     if(typeof(p_elm) == 'object'){
667       elm = p_elm;
668     } else {
669       elm = document.getElementById(p_elm);
670     }
671     while (elm != null) {
672       x+= elm.offsetLeft;
673       elm = elm.offsetParent;
674     }
675     return parseInt(x);
676   }
677   this.getElementWidth = getElementWidth;
678   function getElementWidth(){
679     var elm;
680     if(typeof(p_elm) == 'object'){
681       elm = p_elm;
682     } else {
683       elm = document.getElementById(p_elm);
684     }
685     return parseInt(elm.offsetWidth);
686   }
687   this.getElementRight = getElementRight;
688   function getElementRight(){
689     return getElementLeft(p_elm) + getElementWidth(p_elm);
690   }
691   this.getElementTop = getElementTop;
692   function getElementTop() {
693     var y = 0;
694     var elm;
695     if(typeof(p_elm) == 'object'){
696       elm = p_elm;
697     } else {
698       elm = document.getElementById(p_elm);
699     }
700     while (elm != null) {
701       y+= elm.offsetTop;
702       elm = elm.offsetParent;
703     }
704     return parseInt(y);
705   }
706   this.getElementHeight = getElementHeight;
707   function getElementHeight(){
708     var elm;
709     if(typeof(p_elm) == 'object'){
710       elm = p_elm;
711     } else {
712       elm = document.getElementById(p_elm);
713     }
714     return parseInt(elm.offsetHeight);
715   }
716   this.getElementBottom = getElementBottom;
717   function getElementBottom(){
718     return getElementTop(p_elm) + getElementHeight(p_elm);
719   }
720 }
721 function CC() {
722   var calendarId = 'CC';
723   var currentYear = 0;
724   var currentMonth = 0;
725   var currentDay = 0;
726   var selectedYear = 0;
727   var selectedMonth = 0;
728   var selectedDay = 0;
729   var months = ['"._("January")."','"._("February")."','"._("March")."','"._("April")."','"._("May")."','"._("June")."','"._("July")."','"._("August")."','"._("September")."','"._("October")."','"._("November")."','"._("December")."'];
730   var wdays = ['"._("Su")."', '"._("Mo")."', '"._("Tu")."', '"._("We")."', '"._("Th")."', '"._("Fr")."', '"._("Sa")."'];
731   var dateField = null;
732   function getProperty(p_property){
733     var p_elm = calendarId;
734     var elm = null;
735     if(typeof(p_elm) == 'object'){
736       elm = p_elm;
737     } else {
738       elm = document.getElementById(p_elm);
739     }
740     if (elm != null){
741       if(elm.style){
742         elm = elm.style;
743         if(elm[p_property]){
744           return elm[p_property];
745         } else {
746           return null;
747         }
748       } else {
749         return null;
750       }
751     }
752   }
753   function setElementProperty(p_property, p_value, p_elmId){
754     var p_elm = p_elmId;
755     var elm = null;
756     if(typeof(p_elm) == 'object'){
757       elm = p_elm;
758     } else {
759       elm = document.getElementById(p_elm);
760     }
761     if((elm != null) && (elm.style != null)){
762       elm = elm.style;
763       elm[ p_property ] = p_value;
764     }
765   }
766   function setProperty(p_property, p_value) {
767     setElementProperty(p_property, p_value, calendarId);
768   }
769   function getDaysInMonth(year, month) {
770     return [31,((!(year % 4 ) && ( (year % 100 ) || !( year % 400 ) ))?29:28),31,30,31,30,31,31,30,31,30,31][month-1];
771   }
772   function getDayOfWeek(year, month, day) {
773     var date = new Date(year,month-1,day)
774     return date.getDay();
775   }
776   this.clearDate = clearDate;
777   function clearDate() {
778     dateField.value = '';
779     hide();
780   }
781   this.setDate = setDate;
782   function setDate(year, month, day) {
783     if (dateField) {
784       if (month < 10) {month = '0' + month;}
785       if (day < 10) {day = '0' + day;}
786 ";
787         if ($how == 0)
788                 $js .= "
789       var dateString = month+'$sep'+day+'$sep'+year;
790 ";
791         else if ($how == 1)     
792                 $js .= "
793       var dateString = day+'$sep'+month+'$sep'+year;
794 ";
795         else
796                 $js .= "
797       var dateString = year+'$sep'+month+'$sep'+day;
798 ";
799         $js .= "
800       dateField.value = dateString;
801       hide();
802     }
803     return;
804   }
805   this.changeMonth = changeMonth;
806   function changeMonth(change) {
807     currentMonth += change;
808     currentDay = 0;
809     if(currentMonth > 12) {
810       currentMonth = 1;
811       currentYear++;
812     } else if(currentMonth < 1) {
813       currentMonth = 12;
814       currentYear--;
815     }
816     calendar = document.getElementById(calendarId);
817     calendar.innerHTML = calendarDrawTable();
818   }
819   this.changeYear = changeYear;
820   function changeYear(change) {
821     currentYear += change;
822     currentDay = 0;
823     calendar = document.getElementById(calendarId);
824     calendar.innerHTML = calendarDrawTable();
825   }
826   function getCurrentYear() {
827     var year = new Date().getYear();
828     if(year < 1900) year += 1900;
829     return year;
830   }
831   function getCurrentMonth() {
832     return new Date().getMonth() + 1;
833   } 
834   function getCurrentDay() {
835     return new Date().getDate();
836   }
837   function calendarDrawTable() {
838     var dayOfMonth = 1;
839     var wstart = $wstart;
840     var validDay = 0;
841     var startDayOfWeek = getDayOfWeek(currentYear, currentMonth, dayOfMonth);
842     var daysInMonth = getDaysInMonth(currentYear, currentMonth);
843     var css_class = null; //CSS class for each day
844     var table = \"<table cellspacing='0' cellpadding='0' border='0'>\";
845     table += \"<tr class='header'>\";
846     table += \"  <td colspan='2' class='previous'><a href='javascript:changeCCMonth(-1);'>&lt;</a><br><a href='javascript:changeCCYear(-1);'>&laquo;</a></td>\";
847     table += \"  <td colspan='3' class='title'>\" + months[currentMonth-1] + \"<br>\" + currentYear + \"</td>\";
848     table += \"  <td colspan='2' class='next'><a href='javascript:changeCCMonth(1);'>&gt;</a><br><a href='javascript:changeCCYear(1);'>&raquo;</a></td>\";
849     table += \"</tr>\";
850     table += \"<tr>\";
851     for (var n=0; n<7; n++)
852         table += \"<th>\" + wdays[(wstart+n)%7]+\"</th>\";
853     table += \"</tr>\";
854     for(var week=0; week < 6; week++) {
855       table += \"<tr>\";
856       for(var n=0; n < 7; n++) {
857         dayOfWeek = (wstart+n)%7;
858         if(week == 0 && startDayOfWeek == dayOfWeek) {
859           validDay = 1;
860         } else if (validDay == 1 && dayOfMonth > daysInMonth) {
861           validDay = 0;
862         }
863         if(validDay) {
864           if (dayOfMonth == selectedDay && currentYear == selectedYear && currentMonth == selectedMonth) {
865             css_class = 'current';
866           } else if (dayOfWeek == 0 || dayOfWeek == 6) {
867             css_class = 'weekend';
868           } else {
869             css_class = 'weekday';
870           }
871           table += \"<td><a class='\"+css_class+\"' href=\\\"javascript:setCCDate(\"+currentYear+\",\"+currentMonth+\",\"+dayOfMonth+\")\\\">\"+dayOfMonth+\"</a></td>\";
872           dayOfMonth++;
873         } else {
874           table += \"<td class='empty'>&nbsp;</td>\";
875         }
876       }
877       table += \"</tr>\";
878     }
879     table += \"<tr class='header'><th colspan='7' style='padding: 3px;'><a href='javascript:hideCC();'>Back</a></td></tr>\";
880     table += \"</table>\";
881     return table;
882   }
883   this.show = show;
884   function show(field) {
885     can_hide = 0;
886     if (dateField == field) {
887       return;
888     } else {
889       dateField = field;
890     }
891     if(dateField) {
892       try {
893         var dateString = new String(dateField.value);
894         var dateParts = dateString.split('$sep');
895 ";
896         if ($how == 0)
897                 $js .= "
898         selectedMonth = parseInt(dateParts[0],10);
899         selectedDay = parseInt(dateParts[1],10);
900         selectedYear = parseInt(dateParts[2],10);
901 ";
902         else if ($how == 1)
903                 $js .= "
904         selectedDay = parseInt(dateParts[0],10);
905         selectedMonth = parseInt(dateParts[1],10);
906         selectedYear = parseInt(dateParts[2],10);
907 ";
908         else
909                 $js .= "
910         selectedYear = parseInt(dateParts[0],10);
911         selectedMonth = parseInt(dateParts[1],10);
912         selectedDay = parseInt(dateParts[2],10);
913 ";
914         $js .= "
915       } catch(e) {}
916     }
917     if (!(selectedYear && selectedMonth && selectedDay)) {
918       selectedMonth = getCurrentMonth();
919       selectedDay = getCurrentDay();
920       selectedYear = getCurrentYear();
921     }
922     currentMonth = selectedMonth;
923     currentDay = selectedDay;
924     currentYear = selectedYear;
925     if(document.getElementById){
926       calendar = document.getElementById(calendarId);
927       calendar.innerHTML = calendarDrawTable(currentYear, currentMonth);
928       setProperty('display', 'block');
929       var fieldPos = new positionInfo(dateField);
930       var calendarPos = new positionInfo(calendarId);
931       var x = fieldPos.getElementLeft();
932       var y = fieldPos.getElementBottom();
933       setProperty('left', x + 'px');
934       setProperty('top', y + 'px');
935       if (document.all) {
936         setElementProperty('display', 'block', 'CCIframe');
937         setElementProperty('left', x + 'px', 'CCIframe');
938         setElementProperty('top', y + 'px', 'CCIframe');
939         setElementProperty('width', calendarPos.getElementWidth() + 'px', 'CCIframe');
940         setElementProperty('height', calendarPos.getElementHeight() + 'px', 'CCIframe');
941       }
942     }
943   }
944   this.hide = hide;
945   function hide() {
946     if(dateField) {
947       setProperty('display', 'none');
948       setElementProperty('display', 'none', 'CCIframe');
949       dateField = null;
950     }
951   }
952   this.visible = visible;
953   function visible() {
954     return dateField
955   }
956   this.can_hide = can_hide;
957   var can_hide = 0;
958 }
959 var cC = new CC();
960 function date_picker(textField) {
961   cC.show(textField);
962 }
963 function hideCC() {
964   if (cC.visible()) {
965     cC.hide();
966   }
967 }
968 function setCCDate(year, month, day) {
969   cC.setDate(year, month, day);
970 }
971 function changeCCYear(change) {
972   cC.changeYear(change);
973 }
974 function changeCCMonth(change) {
975   cC.changeMonth(change);
976 }
977 document.write(\"<iframe id='CCIframe' src='javascript:false;' frameBorder='0' scrolling='no'></iframe>\");
978 document.write(\"<div id='CC'></div>\");
979 -->
980 </script>
981 ";
982         return $js;     
983 }
984                 
985 function alert($msg)
986 {
987         echo "\n<script type=\"text/javascript\">\n"
988                 . "<!--\n"
989                 . "alert('$msg');\n"
990                 . "-->\n"
991                 . "</script>\n";
992 }               
993
994 if (!function_exists('_vd')) 
995 {
996         function _vd($mixed, $title = '', $exit = false) 
997         {
998         // Only the site admin is able to proceed here.
999         echo (!empty($title) ? ($title .':') : '') .'<pre>';
1000         var_dump($mixed);
1001         echo "</pre>\n";
1002         if ($exit) 
1003                 exit;
1004         }
1005 }
1006
1007 ?>