Problems retrieving language texts for poEdit in long javascripts
[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         $months = array(_("January"),_("February"),_("March"),_("April"),_("May"),_("June"),_("July"),_("August"),_("September"),_("October"),_("November"),_("December"));
637         $wdays = array(_("Su"),_("Mo"),_("Tu"),_("We"),_("Th"),_("Fr"),_("Sa"));
638         $back = _("Back");
639
640         $js = "<style>
641 #CCIFrame { display: none; left: 0px; position: absolute; top: 0px; height: 250px; width: 250px; z-index: 99;}
642 #CC { position:absolute; background-color:#FFF; margin:0; padding:0; display:none; z-index: 100;}
643 #CC table { font-family: arial, verdana, helvetica, sans-serif;font-size: 8pt; border-left: 1px solid #336; border-right: 1px solid #336;}
644 #CC th { font-weight: normal;}
645 #CC th a { font-weight: normal; text-decoration: none; color: #FFF; padding: 1px;}
646 #CC td { text-align: center;}
647 #CC .header { background-color: #336;}
648 #CC .weekday { background-color: #DDD; color: #000;}
649 #CC .weekend { background-color: #FFC; color: #000;}
650 #CC .current { border: 1px solid #339; background-color: #336; color: #FFF;}
651 #CC .weekday,#CC .weekend,#CC .current { display: block; text-decoration: none; border: 1px solid #FFF; width: 2em;}
652 #CC .weekday:hover,#CC .weekend:hover,#CC .current:hover { color: #FFF; background-color: #336; border: 1px solid #999;}
653 #CC .previous { text-align: left;}
654 #CC .next { text-align: right;}
655 #CC .previous,#CC .next { padding: 1px 3px 1px 3px; font-size: 1.4em;}
656 #CC .previous a,#CC .next a { color: #FFF; text-decoration: none; font-weight: bold;}
657 #CC .title { text-align: center; font-weight: bold; color: #FFF;}
658 #CC .empty { background-color: #CCC; border: 1px solid #FFF;}
659 </style>
660 ";
661         $js .= "<script type=\"text/javascript\">
662 <!--\n
663 function positionInfo(object) {
664   var p_elm = object;
665   this.getElementLeft = getElementLeft;
666   function getElementLeft() {
667     var x = 0;
668     var elm;
669     if(typeof(p_elm) == 'object'){
670       elm = p_elm;
671     } else {
672       elm = document.getElementById(p_elm);
673     }
674     while (elm != null) {
675       x+= elm.offsetLeft;
676       elm = elm.offsetParent;
677     }
678     return parseInt(x);
679   }
680   this.getElementWidth = getElementWidth;
681   function getElementWidth(){
682     var elm;
683     if(typeof(p_elm) == 'object'){
684       elm = p_elm;
685     } else {
686       elm = document.getElementById(p_elm);
687     }
688     return parseInt(elm.offsetWidth);
689   }
690   this.getElementRight = getElementRight;
691   function getElementRight(){
692     return getElementLeft(p_elm) + getElementWidth(p_elm);
693   }
694   this.getElementTop = getElementTop;
695   function getElementTop() {
696     var y = 0;
697     var elm;
698     if(typeof(p_elm) == 'object'){
699       elm = p_elm;
700     } else {
701       elm = document.getElementById(p_elm);
702     }
703     while (elm != null) {
704       y+= elm.offsetTop;
705       elm = elm.offsetParent;
706     }
707     return parseInt(y);
708   }
709   this.getElementHeight = getElementHeight;
710   function getElementHeight(){
711     var elm;
712     if(typeof(p_elm) == 'object'){
713       elm = p_elm;
714     } else {
715       elm = document.getElementById(p_elm);
716     }
717     return parseInt(elm.offsetHeight);
718   }
719   this.getElementBottom = getElementBottom;
720   function getElementBottom(){
721     return getElementTop(p_elm) + getElementHeight(p_elm);
722   }
723 }
724 function CC() {
725   var calendarId = 'CC';
726   var currentYear = 0;
727   var currentMonth = 0;
728   var currentDay = 0;
729   var selectedYear = 0;
730   var selectedMonth = 0;
731   var selectedDay = 0;
732   var months = ['$months[0]','$months[1]','$months[2]','$months[3]','$months[4]','$months[5]','$months[6]','$months[7]','$months[8]','$months[9]','$months[10]','$months[11]'];
733   var wdays = ['$wdays[0]', '$wdays[1]', '$wdays[2]', '$wdays[3]', '$wdays[4]', '$wdays[5]', '$wdays[6]'];
734   var dateField = null;
735   function getProperty(p_property){
736     var p_elm = calendarId;
737     var elm = null;
738     if(typeof(p_elm) == 'object'){
739       elm = p_elm;
740     } else {
741       elm = document.getElementById(p_elm);
742     }
743     if (elm != null){
744       if(elm.style){
745         elm = elm.style;
746         if(elm[p_property]){
747           return elm[p_property];
748         } else {
749           return null;
750         }
751       } else {
752         return null;
753       }
754     }
755   }
756   function setElementProperty(p_property, p_value, p_elmId){
757     var p_elm = p_elmId;
758     var elm = null;
759     if(typeof(p_elm) == 'object'){
760       elm = p_elm;
761     } else {
762       elm = document.getElementById(p_elm);
763     }
764     if((elm != null) && (elm.style != null)){
765       elm = elm.style;
766       elm[ p_property ] = p_value;
767     }
768   }
769   function setProperty(p_property, p_value) {
770     setElementProperty(p_property, p_value, calendarId);
771   }
772   function getDaysInMonth(year, month) {
773     return [31,((!(year % 4 ) && ( (year % 100 ) || !( year % 400 ) ))?29:28),31,30,31,30,31,31,30,31,30,31][month-1];
774   }
775   function getDayOfWeek(year, month, day) {
776     var date = new Date(year,month-1,day)
777     return date.getDay();
778   }
779   this.clearDate = clearDate;
780   function clearDate() {
781     dateField.value = '';
782     hide();
783   }
784   this.setDate = setDate;
785   function setDate(year, month, day) {
786     if (dateField) {
787       if (month < 10) {month = '0' + month;}
788       if (day < 10) {day = '0' + day;}
789 ";
790         if ($how == 0)
791                 $js .= "
792       var dateString = month+'$sep'+day+'$sep'+year;
793 ";
794         else if ($how == 1)     
795                 $js .= "
796       var dateString = day+'$sep'+month+'$sep'+year;
797 ";
798         else
799                 $js .= "
800       var dateString = year+'$sep'+month+'$sep'+day;
801 ";
802         $js .= "
803       dateField.value = dateString;
804       hide();
805     }
806     return;
807   }
808   this.changeMonth = changeMonth;
809   function changeMonth(change) {
810     currentMonth += change;
811     currentDay = 0;
812     if(currentMonth > 12) {
813       currentMonth = 1;
814       currentYear++;
815     } else if(currentMonth < 1) {
816       currentMonth = 12;
817       currentYear--;
818     }
819     calendar = document.getElementById(calendarId);
820     calendar.innerHTML = calendarDrawTable();
821   }
822   this.changeYear = changeYear;
823   function changeYear(change) {
824     currentYear += change;
825     currentDay = 0;
826     calendar = document.getElementById(calendarId);
827     calendar.innerHTML = calendarDrawTable();
828   }
829   function getCurrentYear() {
830     var year = new Date().getYear();
831     if(year < 1900) year += 1900;
832     return year;
833   }
834   function getCurrentMonth() {
835     return new Date().getMonth() + 1;
836   } 
837   function getCurrentDay() {
838     return new Date().getDate();
839   }
840   function calendarDrawTable() {
841     var dayOfMonth = 1;
842     var wstart = $wstart;
843     var validDay = 0;
844     var startDayOfWeek = getDayOfWeek(currentYear, currentMonth, dayOfMonth);
845     var daysInMonth = getDaysInMonth(currentYear, currentMonth);
846     var css_class = null; //CSS class for each day
847     var table = \"<table cellspacing='0' cellpadding='0' border='0'>\";
848     table += \"<tr class='header'>\";
849     table += \"  <td colspan='2' class='previous'><a href='javascript:changeCCMonth(-1);'>&lt;</a><br><a href='javascript:changeCCYear(-1);'>&laquo;</a></td>\";
850     table += \"  <td colspan='3' class='title'>\" + months[currentMonth-1] + \"<br>\" + currentYear + \"</td>\";
851     table += \"  <td colspan='2' class='next'><a href='javascript:changeCCMonth(1);'>&gt;</a><br><a href='javascript:changeCCYear(1);'>&raquo;</a></td>\";
852     table += \"</tr>\";
853     table += \"<tr>\";
854     for (var n=0; n<7; n++)
855         table += \"<th>\" + wdays[(wstart+n)%7]+\"</th>\";
856     table += \"</tr>\";
857     for(var week=0; week < 6; week++) {
858       table += \"<tr>\";
859       for(var n=0; n < 7; n++) {
860         dayOfWeek = (wstart+n)%7;
861         if(week == 0 && startDayOfWeek == dayOfWeek) {
862           validDay = 1;
863         } else if (validDay == 1 && dayOfMonth > daysInMonth) {
864           validDay = 0;
865         }
866         if(validDay) {
867           if (dayOfMonth == selectedDay && currentYear == selectedYear && currentMonth == selectedMonth) {
868             css_class = 'current';
869           } else if (dayOfWeek == 0 || dayOfWeek == 6) {
870             css_class = 'weekend';
871           } else {
872             css_class = 'weekday';
873           }
874           table += \"<td><a class='\"+css_class+\"' href=\\\"javascript:setCCDate(\"+currentYear+\",\"+currentMonth+\",\"+dayOfMonth+\")\\\">\"+dayOfMonth+\"</a></td>\";
875           dayOfMonth++;
876         } else {
877           table += \"<td class='empty'>&nbsp;</td>\";
878         }
879       }
880       table += \"</tr>\";
881     }
882     table += \"<tr class='header'><th colspan='7' style='padding: 3px;'><a href='javascript:hideCC();'>$back</a></td></tr>\";
883     table += \"</table>\";
884     return table;
885   }
886   this.show = show;
887   function show(field) {
888     can_hide = 0;
889     if (dateField == field) {
890       return;
891     } else {
892       dateField = field;
893     }
894     if(dateField) {
895       try {
896         var dateString = new String(dateField.value);
897         var dateParts = dateString.split('$sep');
898 ";
899         if ($how == 0)
900                 $js .= "
901         selectedMonth = parseInt(dateParts[0],10);
902         selectedDay = parseInt(dateParts[1],10);
903         selectedYear = parseInt(dateParts[2],10);
904 ";
905         else if ($how == 1)
906                 $js .= "
907         selectedDay = parseInt(dateParts[0],10);
908         selectedMonth = parseInt(dateParts[1],10);
909         selectedYear = parseInt(dateParts[2],10);
910 ";
911         else
912                 $js .= "
913         selectedYear = parseInt(dateParts[0],10);
914         selectedMonth = parseInt(dateParts[1],10);
915         selectedDay = parseInt(dateParts[2],10);
916 ";
917         $js .= "
918       } catch(e) {}
919     }
920     if (!(selectedYear && selectedMonth && selectedDay)) {
921       selectedMonth = getCurrentMonth();
922       selectedDay = getCurrentDay();
923       selectedYear = getCurrentYear();
924     }
925     currentMonth = selectedMonth;
926     currentDay = selectedDay;
927     currentYear = selectedYear;
928     if(document.getElementById){
929       calendar = document.getElementById(calendarId);
930       calendar.innerHTML = calendarDrawTable(currentYear, currentMonth);
931       setProperty('display', 'block');
932       var fieldPos = new positionInfo(dateField);
933       var calendarPos = new positionInfo(calendarId);
934       var x = fieldPos.getElementLeft();
935       var y = fieldPos.getElementBottom();
936       setProperty('left', x + 'px');
937       setProperty('top', y + 'px');
938       if (document.all) {
939         setElementProperty('display', 'block', 'CCIframe');
940         setElementProperty('left', x + 'px', 'CCIframe');
941         setElementProperty('top', y + 'px', 'CCIframe');
942         setElementProperty('width', calendarPos.getElementWidth() + 'px', 'CCIframe');
943         setElementProperty('height', calendarPos.getElementHeight() + 'px', 'CCIframe');
944       }
945     }
946   }
947   this.hide = hide;
948   function hide() {
949     if(dateField) {
950       setProperty('display', 'none');
951       setElementProperty('display', 'none', 'CCIframe');
952       dateField = null;
953     }
954   }
955   this.visible = visible;
956   function visible() {
957     return dateField
958   }
959   this.can_hide = can_hide;
960   var can_hide = 0;
961 }
962 var cC = new CC();
963 function date_picker(textField) {
964   cC.show(textField);
965 }
966 function hideCC() {
967   if (cC.visible()) {
968     cC.hide();
969   }
970 }
971 function setCCDate(year, month, day) {
972   cC.setDate(year, month, day);
973 }
974 function changeCCYear(change) {
975   cC.changeYear(change);
976 }
977 function changeCCMonth(change) {
978   cC.changeMonth(change);
979 }
980 document.write(\"<iframe id='CCIframe' src='javascript:false;' frameBorder='0' scrolling='no'></iframe>\");
981 document.write(\"<div id='CC'></div>\");
982 -->
983 </script>
984 ";
985         return $js;     
986 }
987                 
988 function alert($msg)
989 {
990         echo "\n<script type=\"text/javascript\">\n"
991                 . "<!--\n"
992                 . "alert('$msg');\n"
993                 . "-->\n"
994                 . "</script>\n";
995 }               
996
997 if (!function_exists('_vd')) 
998 {
999         function _vd($mixed, $title = '', $exit = false) 
1000         {
1001         // Only the site admin is able to proceed here.
1002         echo (!empty($title) ? ($title .':') : '') .'<pre>';
1003         var_dump($mixed);
1004         echo "</pre>\n";
1005         if ($exit) 
1006                 exit;
1007         }
1008 }
1009
1010 ?>