diff -uNr JobTracker-1.5.5/invoicehtml.php /kees/projects/naboo-httpd/html/jobs/invoicehtml.php
--- JobTracker-1.5.5/invoicehtml.php	Tue Dec 11 10:25:58 2001
+++ /kees/projects/naboo-httpd/html/jobs/invoicehtml.php	Thu Sep  5 10:23:09 2002
@@ -32,7 +32,7 @@
    if ($JobsPresent=='true')
      {
       $JobsPresent = 'false';
-      $jobs_result = mysql_query("select JobID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, Starttijd, Stoptijd, Pauze, (time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600 as duration, Tarief, (Tarief*((time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600)) as total, BTW, (0.01*BTW*(Tarief*((time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600))) as totalbtw from Jobs where CustomerID=$CustomerID and Datum between '$Startdate' and '$Stopdate' and Billed = 'No' and CompanyID=$CompanyID order by Datum", $db);
+      $jobs_result = mysql_query("select JobID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, YEAR(Datum)as year, Starttijd, Stoptijd, Pauze, (time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600 as duration, Tarief, (Tarief*((time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600)) as total, BTW, (0.01*BTW*(Tarief*((time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600))) as totalbtw from Jobs where CustomerID=$CustomerID and Datum between '$Startdate' and '$Stopdate' and Billed = 'No' and CompanyID=$CompanyID order by Datum", $db);
       checkMySQLError();
       if ($jobs_row = mysql_fetch_array($jobs_result))
         {
@@ -57,7 +57,7 @@
                         echo ("<td><font size=-1><b>$lDate</b></font></td> <td><font size=-1><b>$lDescription</b></font></td> <td><font size=-1><font size=-1><b>$lStartTime</b></font></td><td><font size=-1><b>$lStopTime</b></font></td><td><font size=-1><b>$lHours</b></font></td><td><font size=-1><b>$lRate</b></font></td> <td><font size=-1><b>$lTotal</b></font></td>\n");
                         echo ("</tr>\n");
                        }
-                     printf(" <tr HEIGHT=\"23\">\n  <td>%s-%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", $jobs_row["day"], $jobs_row["month"], $jobs_row["Omschrijving"], $jobs_row["Starttijd"], $jobs_row["Stoptijd"], $jobs_row["duration"], $jobs_row["Tarief"], $jobs_row["total"]);
+                     printf(" <tr HEIGHT=\"23\">\n  <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", date($lStrFTime,mktime(0,0,0, $jobs_row["month"], $jobs_row["day"], $jobs_row["year"])), $jobs_row["Omschrijving"], $jobs_row["Starttijd"], $jobs_row["Stoptijd"], $jobs_row["duration"], $jobs_row["Tarief"], $jobs_row["total"]);
 
                      $tmpJobID=$jobs_row["JobID"];
                      $result = mysql_query("update Jobs set Billed = 'Yes', BilledonInv = $InvoiceID where JobID = $tmpJobID and Billed= 'No' and CompanyID=$CompanyID", $db);
@@ -78,7 +78,7 @@
 
       # select fixedjobs
 
-      $fjobs_result = mysql_query("select JobID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, Aantal, Prijs, (Aantal*Prijs) as total, BTW, (BTW*0.01*Aantal*Prijs) as totalbtw from FixedJobs where CustomerID=$CustomerID and Datum between '$Startdate' and '$Stopdate' and Billed = 'No' and CompanyID=$CompanyID order by Datum", $db);
+      $fjobs_result = mysql_query("select JobID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, YEAR(Datum)as year, Aantal, Prijs, (Aantal*Prijs) as total, BTW, (BTW*0.01*Aantal*Prijs) as totalbtw from FixedJobs where CustomerID=$CustomerID and Datum between '$Startdate' and '$Stopdate' and Billed = 'No' and CompanyID=$CompanyID order by Datum", $db);
       checkMySQLError();
       if ($fjobs_row = mysql_fetch_array($fjobs_result))
         {
@@ -102,7 +102,7 @@
                         echo ("   <td><font size=-1><b>$lDate</b></font></td> <td COLSPAN=\"3\"><font size=-1><b>$lDescription</b></font></td> <td><font size=-1><b>$lCount</b></font></td> <td><font size=-1><b>$lPrice</b></font></td><td><font size=-1><b>$lTotal</b></font></td>\n");
                         echo ("</tr>\n");
                        }
-                     printf(" <tr HEIGHT=\"23\">\n  <td>%s-%s</td> <td COLSPAN=\"3\">%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", $fjobs_row["day"], $fjobs_row["month"], $fjobs_row["Omschrijving"], $fjobs_row["Aantal"], $fjobs_row["Prijs"], $fjobs_row["total"]);
+                     printf(" <tr HEIGHT=\"23\">\n  <td>%s</td> <td COLSPAN=\"3\">%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", date($lStrFTime,mktime(0,0,0, $fjobs_row["month"], $fjobs_row["day"], $fjobs_row["year"])), $fjobs_row["Omschrijving"], $fjobs_row["Aantal"], $fjobs_row["Prijs"], $fjobs_row["total"]);
 
                      $tmpJobID=$fjobs_row["JobID"];
                      $result = mysql_query("update FixedJobs set Billed = 'Yes', BilledonInv = $InvoiceID where JobID = $tmpJobID and Billed= 'No' and CompanyID=$CompanyID", $db);
@@ -126,7 +126,7 @@
 if ($ThingsPresent=='true')
   {
    $ThingsPresent = 'false';
-   $things_result = mysql_query("select ThingID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, Aantal, Prijs, (Aantal*Prijs) as total, BTW, (BTW*0.01*Aantal*Prijs) as totalbtw from Things where CustomerID=$CustomerID and Datum between '$Startdate' and '$Stopdate' and Billed = 'No' and CompanyID=$CompanyID order by Datum", $db);
+   $things_result = mysql_query("select ThingID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, YEAR(Datum) as year, Aantal, Prijs, (Aantal*Prijs) as total, BTW, (BTW*0.01*Aantal*Prijs) as totalbtw from Things where CustomerID=$CustomerID and Datum between '$Startdate' and '$Stopdate' and Billed = 'No' and CompanyID=$CompanyID order by Datum", $db);
    checkMySQLError();
    if ($things_row = mysql_fetch_array($things_result))
      {
@@ -150,7 +150,7 @@
                      echo ("   <td><font size=-1><b>$lDate</b></font></td> <td COLSPAN=\"3\"><font size=-1><b>$lDescription</b></font></td> <td><font size=-1><b>$lCount</b></font></td> <td><font size=-1><b>$lPrice</b></font></td><td><font size=-1><b>$lTotal</b></font></td>\n");
                      echo ("</tr>\n");
                     }
-                  printf(" <tr HEIGHT=\"23\">\n  <td>%s-%s</td> <td COLSPAN=\"3\">%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", $things_row["day"], $things_row["month"], $things_row["Omschrijving"], $things_row["Aantal"], $things_row["Prijs"], $things_row["total"]);
+                  printf(" <tr HEIGHT=\"23\">\n  <td>%s</td> <td COLSPAN=\"3\">%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", date($lStrFTime,mktime(0,0,0, $things_row["month"], $things_row["day"], $things_row["year"])), $things_row["Omschrijving"], $things_row["Aantal"], $things_row["Prijs"], $things_row["total"]);
 
                   $tmpThingID=$things_row["ThingID"];
                   $result = mysql_query("update Things set Billed = 'Yes', BilledonInv = $InvoiceID where ThingID = $tmpThingID and Billed= 'No' and CompanyID=$CompanyID", $db);
diff -uNr JobTracker-1.5.5/invoicepdf.php /kees/projects/naboo-httpd/html/jobs/invoicepdf.php
--- JobTracker-1.5.5/invoicepdf.php	Tue Dec 11 10:58:09 2001
+++ /kees/projects/naboo-httpd/html/jobs/invoicepdf.php	Mon May  6 15:12:31 2002
@@ -199,7 +199,7 @@
 $invoice_row = mysql_fetch_array($invoice_result);
 $InvoiceID=$invoice_row["last_inv"]+1;
 
-$date = date("d-m-Y");
+$date = date($lStrFTime);
 
 $fontsize = to_cm(12);
 $font = PDF_findfont($p, "Times-Roman", "host", 0);
diff -uNr JobTracker-1.5.5/lang/english.php /kees/projects/naboo-httpd/html/jobs/lang/english.php
--- JobTracker-1.5.5/lang/english.php	Tue Dec 11 11:20:18 2001
+++ /kees/projects/naboo-httpd/html/jobs/lang/english.php	Mon May  6 15:11:06 2002
@@ -31,8 +31,9 @@
 $lJobDoneBy="Done by";
 $lDescription="Description";
 $lDate="Date";
-$lStartTime="Starttime";
-$lStopTime="Stoptime";
+$lStrFTime="d-m-Y";
+$lStartTime="Start";
+$lStopTime="Finish";
 $lBreak="Break";
 $lRate="Rate";
 $lBTW="VAT";
@@ -44,16 +45,16 @@
 $lBTWNull="VAT zero";
 $lDuration="Duration";
 $lBilled="Billed";
-$lPayed="Payed";
+$lPayed="Paid";
 $lTotal="Total";
 
 $lFrom="From";
 $lTill="Till";
 
-$lDefaultStartTime="Default starttime";
-$lDefaultStopTime="Default stoptime";
-$lDefaultBreakTime="Default break";
-$lDefaultJobRate="Default rate";
+$lDefaultStartTime="Default Start Time";
+$lDefaultStopTime="Default Stop Time";
+$lDefaultBreakTime="Default Break Time";
+$lDefaultJobRate="Default Rate";
 $lDefaultDaysToPay="Default days to pay";
 
 # IDs
@@ -82,7 +83,7 @@
 $lSorryNoNameGiven="No name given";
 $lNotAllowed="Not allowed!";
 $lSorryNotAllValuesGiven="Not all required field filled in";
-$lSorryInvoiceIDToLow="The given last invoicenumer is too low, invoicenumer should be higher as the numeber of the last generated invoice:";
+$lSorryInvoiceIDToLow="The given last invoicenumber is too low, invoicenumber should be higher as the numeber of the last generated invoice:";
 
 $lAllJobsBetween="All jobs between";
 $lAllFixedJobsBetween="All jobs between";
@@ -94,7 +95,7 @@
 $lYourReminderIsGenerated="The reminder is generated";
 $lYourInvoiceIsGenerated="The invoice is regenerated";
 
-$lSorryThatUserNameExists="Sorry that username is allready in use";
+$lSorryThatUserNameExists="Sorry that username is already in use";
 
 # showfunctions
 $lShowCompany="View company";
@@ -219,6 +220,7 @@
 //------------------------------------------------------------------
 // invoice
 
+$lFrom="From";
 $lTo="To";
 $lInvoice="INVOICE";
 $lReminder="REMINDER";
@@ -228,8 +230,8 @@
 $lToPay="To pay";
 $lPaymentIn="Payment in";
 $lDays="days";
-$lPaymentMark="Please include this sign when paying:";
-$lDeliverdServicesGoods="Goods / services deliverd to you";
+$lPaymentMark="Please include this reference number when paying:";
+$lDeliverdServicesGoods="Goods / services delivered to you";
 $lCreateReminder="Create reminder";
 //------------------------------------------------------------------
 
@@ -249,7 +251,7 @@
 $lWelcomeMessage="
         <b>Yeah!</b><br>
         <p>Welcome to $BRAND!
-        <p>you can put some message here...
+        <p>Make some cash!
 ";
 
 
diff -uNr JobTracker-1.5.5/lang/italian.php /kees/projects/naboo-httpd/html/jobs/lang/italian.php
--- JobTracker-1.5.5/lang/italian.php	Tue Dec 11 11:11:34 2001
+++ /kees/projects/naboo-httpd/html/jobs/lang/italian.php	Mon May  6 15:11:18 2002
@@ -32,6 +32,7 @@
 $lJobDoneBy="Fatto da";
 $lDescription="Descrizione";
 $lDate="Data";
+$lStrFTime="d-m-Y";
 $lStartTime="Starttime";
 $lStopTime="Stoptime";
 $lBreak="Break";
diff -uNr JobTracker-1.5.5/lang/nederlands.php /kees/projects/naboo-httpd/html/jobs/lang/nederlands.php
--- JobTracker-1.5.5/lang/nederlands.php	Tue Dec 11 11:20:31 2001
+++ /kees/projects/naboo-httpd/html/jobs/lang/nederlands.php	Mon May  6 15:11:27 2002
@@ -31,6 +31,7 @@
 $lJobDoneBy="Gedaan door";
 $lDescription="Omschrijving";
 $lDate="Datum";
+$lStrFTime="d-m-Y";
 $lStartTime="Starttijd";
 $lStopTime="Stoptijd";
 $lBreak="Pauze";
diff -uNr JobTracker-1.5.5/lang/us_english.php /kees/projects/naboo-httpd/html/jobs/lang/us_english.php
--- JobTracker-1.5.5/lang/us_english.php	Wed Dec 31 16:00:00 1969
+++ /kees/projects/naboo-httpd/html/jobs/lang/us_english.php	Mon May  6 15:40:39 2002
@@ -0,0 +1,306 @@
+<?
+/*
+     us_english.php
+     JobTracker by Sietse Dijkstra, s_.dijkstra@quicknet.nl
+
+     Base Translation File
+
+     V 1.5.5 ok
+*/
+
+# search
+$lSearchByCustomer="Search by customer";
+$lSearchByJob="Search by Job";
+$lSearchByThing="Search by Item";
+
+# fields
+$lName="Name";
+$lAddress="Address";
+$lCity="Zip City";
+$lState="Country";
+$lPhone="Phone";
+$lDaysToPay="Days to pay";
+
+$lUsername="Username";
+$lPassword="Password";
+$lRealName="Real Name";
+$lAdmin="Administrator";
+$lLanguage="Language";
+$lEmail="Email";
+
+$lJobDoneBy="Done by";
+$lDescription="Description";
+$lDate="Date";
+$lStrFTime="M d, Y";
+$lStartTime="Start";
+$lStopTime="Finish";
+$lBreak="Break";
+$lRate="Rate";
+$lBTW="Tax";
+$lPrice="Price";
+$lCount="Amount";
+$lThingSoldBy="Sold by";
+$lBTWLow="Tax low";
+$lBTWHigh="Tax high";
+$lBTWNull="Tax zero";
+$lDuration="Duration";
+$lBilled="Billed";
+$lPayed="Paid";
+$lTotal="Total";
+
+$lFrom="From";
+$lTill="Till";
+
+$lDefaultStartTime="Default Start Time";
+$lDefaultStopTime="Default Stop Time";
+$lDefaultBreakTime="Default Break Time";
+$lDefaultJobRate="Default Rate";
+$lDefaultDaysToPay="Default days to pay";
+
+# IDs
+$lThingID="ID";
+$lJobID="ID";
+$lInvoiceID="Invoicenumber";
+$lCompanyID="ID";
+$lCustomerID="ID";
+$lUserID="ID";
+
+# reports
+$lNoThingsFound="No items found";
+$lNoFixedJobsFound="No jobs found";
+$lNoJobsFound="No jobs found";
+$lNoCustomersFound="No customers found";
+$lNoInvoicesFound="No invoices found";
+$lNothingToBeBilled="Nothing to be billed";
+
+$lCustomerAddition="Customer added";
+$lUserAddition="User added";
+$lCompanyAddition="Company added";
+$lJobAddition="Job added";
+$lFixedJobAddition="Job added";
+$lThingAddition="Item added";
+
+$lSorryNoNameGiven="No name given";
+$lNotAllowed="Not allowed!";
+$lSorryNotAllValuesGiven="Not all required field filled in";
+$lSorryInvoiceIDToLow="The given last invoicenumber is too low, invoicenumber should be higher as the numeber of the last generated invoice:";
+
+$lAllJobsBetween="All jobs between";
+$lAllFixedJobsBetween="All jobs between";
+$lAllThingsBetween="All items between";
+
+$lUpdateSuccess="Update succesfull";
+$lUpdateFailed="Update unnsuccesfull";
+
+$lYourReminderIsGenerated="The reminder is generated";
+$lYourInvoiceIsGenerated="The invoice is regenerated";
+
+$lSorryThatUserNameExists="Sorry that username is already in use";
+
+# showfunctions
+$lShowCompany="View company";
+$lShowThing="View item";
+$lShowFJob="View fixed job";
+$lShowInvoice="View invoice";
+$lShowJob="View job";
+
+# enterfunctions
+$lEnter="Enter";
+$lEnterJob="Enter job";
+$lEnterInvoice="Enter invoice";
+$lEnterThing="Enter item";
+$lEnterFixedJob="Enter fixed job";
+$lEnterCustomer="Enter customer";
+$lEnterUser="Enter user";
+$lEnterSomething="Enter something";
+$lEnterReminder="Create reminder";
+$lEnterCompany="Enter Company";
+
+
+# editfunctions
+$lEditUser="Edit user";
+$lEditCustomer="Edit customer";
+$lEditCompany="Edit company";
+$lEditThing="Edit item";
+$lEditInvoice="Edit invoice";
+$lEditFJob="Edit fixed job";
+$lEditJob="Edit job";
+
+# deletefunctions
+$lDeleteThing="Delete item";
+$lDeleteUser="Delete user";
+$lDeleteCustomer="Delete customer";
+$lDeleteInvoice="Delete invoice";
+$lDeleteCompany="Delete company";
+$lDeleteJob="Delete job";
+$lDeleteFJob="Delete fixed job";
+
+$lReallyDeleteJob="Really delete job?";
+$lReallyDeleteThing="Really delete thing?";
+$lReallyDeleteInvoice="Really delete invoice?";
+$lReallyDeleteCustomer="Really delete customer?";
+$lReallyDeleteCompany="Really delete company?";
+$lReallyDeleteUser="Really delete user?";
+
+
+# div
+
+$lInvoices="Invoices";
+$lActions="Actions";
+$lUser="User";
+$lMainMenu="Mainmenu";
+$lJobs="Jobs";
+$lUsers="Users";
+$lFixedJobs="Fixed jobs";
+$lThings="Items";
+$lCustomer="Customer";
+$lCustomers="Customers";
+$lListCustomers="Customerlist";
+$lCompanies="Companies";
+$lOverviews="Overviews";
+$lSettings="Settings";
+$lWelcome="Welcome";
+$lRealLastInvoice="Min. invoicenumber";
+$lLastInvoice="Last invoicenumber";
+$lInformation="Information";
+$lPrivacy="Privacy";
+$lMemberslogin="Members login";
+$lMailPassword="Email password";
+$lContact="Contact";
+$lLinks="Links";
+$lCompanyName="Companyname";
+
+$lEnterPayment="Enter payment";
+$lPaymentMethod="Payment term";
+$lYearly="Yearly";
+$lHalfyearly="Halfyearly";
+
+$lListAccesses="Activity overview";
+$lAccesses="Activities";
+$lTime="Time";
+$lIP="IP address";
+$lAction="Activity";
+$lReferer="Referer";
+$lHttpUserAgent="User agent";
+
+$lNo="No";
+$lYes="Yes";
+
+$lLogout="Log out";
+$lRefresh="Refresh";
+$lBack="back";
+
+$lRemark="Remark";
+$lGo="go";
+$lListCompanies="List companies";
+$lBill="Bill";
+$lReturn="return";
+$lSearch="Search";
+$lAmountInc="Amount incl. Tax";
+$lClose="Close";
+$lView="View";
+$lShow="Show";
+
+//------------------------------------------------------------------
+// reports.php
+
+$lSales="Sales";
+$lAmounts="Amounts";
+$lHours="Hours";
+$lMaterials="Materials";
+$lOtherIncome="Oth. income";
+$lTotalInclVat="Total incl. Tax";
+$lTotalExclVat="Total excl. Tax";
+$lTotalVat="Total Tax";
+$lHourWage="Hourwage";
+$lTotals="Totals";
+
+$lReports="Reports";
+$lShowReports="View reports";
+//------------------------------------------------------------------
+// invoice
+
+$lFrom="From";
+$lTo="To";
+$lInvoice="INVOICE";
+$lReminder="REMINDER";
+$lNumber="Number";
+$lJobs="Jobs";
+$lCurrency="Currency";
+$lToPay="To pay";
+$lPaymentIn="Payment in";
+$lDays="days";
+$lPaymentMark="Please include this reference number when paying:";
+$lDeliverdServicesGoods="Goods / services delivered to you";
+$lCreateReminder="Create reminder";
+//------------------------------------------------------------------
+
+
+$lMarksRequiredField="Marks a required field";
+
+$lHere="here";
+$lForgot="Forgot username and/or password? Click ";
+$lNotMember="Sign up ";
+$lMoreInformation="More information";
+$lEmailPassword="Please enter here your email adress so we can send you an email with the login data registered to that email adress.";
+
+$lIndexPoints="";
+
+$lIndexNotice="";
+
+$lWelcomeMessage="
+        <b>Yeah!</b><br>
+        <p>Welcome to $BRAND!
+        <p>Make some cash!
+";
+
+
+$lExtendedInfo="
+   <p><div class='title'>Who's looking for $BRAND?</div>
+   <p>$BRAND is meant for small companies with one or more employees.
+   <p>$BRAND was first developed for the inhouse tracking of spent time on a job for a particular customer. Because the system worked so well, it was decided to make it also accessible for others. Also the functionality increased, like the addition of tracking sold articles, and the direct printing of invoices.
+   <br>
+   <p><div class='title'>What is $BRAND?</div>
+   <p>$BRAND is a web-application to manage the work done and articles sold by you or your or one of your employees.
+   <p>According to the entered data $BRAND can generate overviews and print invoices.
+   <br>
+   <p><div class='title'>Why $BRAND?</div>
+   <p>$BRAND keeps a clear track of your activities and is the only system which combines timetracking and billing,  this can save you a lot of time and/or money.
+   <p>Invoices are generated in PDF format, you need to download <a href='http://www.adobe.com/products/acrobat/readstep2.html' target='_blank'>PDF-viewer</a> at no cost from abobe software, in teh case no pdf viewer is installed on your system.
+   <br>
+   <p><div class='title'>How does it work?</div>
+   <p>This is only a short manual of the system, a more complete reference will be written when more time is availabe.
+   <p><center><img src='images/custoverview.jpg' border=0 alt='customer details'><br><font size='-1'>customer details</font></center>
+   <p>After signing up you need to enter a customer before you can keep track of your activities. When a customer is entered you can enter either hourly based work (with start- stoptime), work at a fixed rate (without start- stoptime), or articles delivered by your company.
+   <p><center><img src='images/customers.jpg' border=0 alt='customeroverview'><br><font size='-1'>customeroverview</font></center>
+   <p><center><img src='images/hourjob.jpg' border=0 alt='hourly billed job'><br><font size='-1'>hourly billed job</font></center>
+   <p>When some at least something is entered you're able to create an invoice. Using a start and stopdate everything in that period is selected, then you can select the individual activities/articles.
+   <p><center><img src='images/invoice.jpg' border=0 alt='invoice in pdf format'><br><font size='-1'>invoice in pdf format</font></center>
+   <p>When something is billed, it cannot be modified or deleted anymore, unless the invoice is deleted. When the status of the invoice is set to 'paid' the invoice cannot be modified or deleted. When the invoice hasn't been set to paid after the number of days it has to be payed within, the 'Payed' column, shows a red 'No', and a reminder can be generated.
+   <p>Be cautious when deleting a customer, all data af the customer will be lost!
+   <p>Because of this danger the 'administrator' (the user who signed up for $BRAND) can create users (non-administrators) who don't have the permission to delete customers, as well they can't delete other users, nor invoices. The use of a different user fot each employee also comes in handy when entering activities or articles, which user did what is easy tracked that way.
+   <p>For each user a default start- stoptime, break, and rate can be entered, this data shows up automatically when entering a new hourly-based job.
+   <p>There are also some general settings that can be modified by the administrator(s) only, like Tax and the companies data.
+   <p>Furthermore there is the function to search within the system, searched can be in the <i>Customer</i>, <i>Job</i> and <i>Article</i> databases.
+   <br>
+   <p><div class='title'>How about security?</div>
+   <p>$BRAND uses SSL encryption to encrypt the data dend over the internet. You will have to enable encryption by <u>installing the SSL certificate</u> presented by $BRAND, this will be presented as soon as you access the secured section. In Internet explorer you'll have to click the <i>More</i> or <i>Advanced</i> button, and <i>Install certificate</i>, this will show up the certificate installation wizard, in Netscape you can install the certificate right away.
+   <p>You can check the encryption status by clicking on the lock-icon in your browser. In Internet Explorer a lock will show up in the statusbar when accessing the secure area, in Netscape the lock will have a yellow shining around it.
+   <p>When you don't install the certificate the system will work without troubles anyway, but the data will not be encrypted.
+   <br>
+   <p><div class='title'>What does $BRAND cost?</div>
+   <p>$BRAND is <b>absolutely free!</b>
+   <p>When you'd like to have this software you can get the source <a href='$DOWNLOAD'>here</a>, this software is distributed under the <a href='http://www.gnu.org/copyleft/gpl.html'>GPL</a>.
+
+   <p><center><a href='http://sietsesupport.webhop.net'><img src='images/sislogo.gif' border=0 alt='%s'></a></center>
+   <p>Wishlist:
+   <li>Invoices send by email
+   <li>Possibility to let your customers login and check their data.
+
+   <p>Some current problems:
+   <li>Invoices restricted to one page.
+
+";
+
+
+?>
diff -uNr JobTracker-1.5.5/showinvoicehtml.php /kees/projects/naboo-httpd/html/jobs/showinvoicehtml.php
--- JobTracker-1.5.5/showinvoicehtml.php	Tue Dec 11 10:26:35 2001
+++ /kees/projects/naboo-httpd/html/jobs/showinvoicehtml.php	Thu Sep  5 10:21:32 2002
@@ -31,7 +31,7 @@
 
 $TotJobsPresent = 'false';
 $JobsPresent = 'false';
-$jobs_result = mysql_query("select JobID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, Starttijd, Stoptijd, Pauze, (time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600 as duration, Tarief, (Tarief*((time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600)) as total, BTW, (0.01*BTW*(Tarief*((time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600))) as totalbtw from Jobs where BilledOnInv=$InvoiceID and CompanyID=$CompanyID order by Datum", $db);
+$jobs_result = mysql_query("select JobID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, YEAR(Datum)as year, Starttijd, Stoptijd, Pauze, (time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600 as duration, Tarief, (Tarief*((time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600)) as total, BTW, (0.01*BTW*(Tarief*((time_to_sec(Stoptijd +0)-time_to_sec(Starttijd+0)-time_to_sec(Pauze +0))/3600))) as totalbtw from Jobs where BilledOnInv=$InvoiceID and CompanyID=$CompanyID order by Datum", $db);
 checkMySQLError();
 if ($jobs_row = mysql_fetch_array($jobs_result))
   {
@@ -50,7 +50,7 @@
          echo ("<td><font size=-1><b>$lDate</b></font></td> <td><font size=-1><b>$lDescription</b></font></td> <td><font size=-1><font size=-1><b>$lStartTime</b></font></td><td><font size=-1><b>$lStopTime</b></font></td><td><font size=-1><b>$lHours</b></font></td><td><font size=-1><b>$lRate</b></font></td> <td><font size=-1><b>$lTotal</b></font></td>\n");
          echo ("</tr>\n");
         }
-      printf(" <tr HEIGHT=\"23\">\n  <td>%s-%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", $jobs_row["day"], $jobs_row["month"], $jobs_row["Omschrijving"], $jobs_row["Starttijd"], $jobs_row["Stoptijd"], $jobs_row["duration"], $jobs_row["Tarief"], $jobs_row["total"]);
+      printf(" <tr HEIGHT=\"23\">\n  <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", date($lStrFTime,mktime(0,0,0,$jobs_row["month"], $jobs_row["day"], $jobs_row["year"])), $jobs_row["Omschrijving"], $jobs_row["Starttijd"], $jobs_row["Stoptijd"], $jobs_row["duration"], $jobs_row["Tarief"], $jobs_row["total"]);
 
       $totexclbtw = $totexclbtw + $jobs_row["total"];
       $totbtw = $totbtw + $jobs_row["totalbtw"];
@@ -60,7 +60,7 @@
   }
 
 $FixedJobsPresent = 'false';
-$fjobs_result = mysql_query("select JobID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, Aantal, Prijs, (Aantal*Prijs) as total, BTW, (BTW*0.01*Aantal*Prijs) as totalbtw from FixedJobs where BilledOnInv=$InvoiceID and CompanyID=$CompanyID order by Datum", $db);
+$fjobs_result = mysql_query("select JobID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, YEAR(Datum) as year, Aantal, Prijs, (Aantal*Prijs) as total, BTW, (BTW*0.01*Aantal*Prijs) as totalbtw from FixedJobs where BilledOnInv=$InvoiceID and CompanyID=$CompanyID order by Datum", $db);
 checkMySQLError();
 if ($fjobs_row = mysql_fetch_array($fjobs_result))
   {
@@ -78,7 +78,7 @@
          echo ("   <td><font size=-1><b>$lDate</b></font></td> <td COLSPAN=\"3\"><font size=-1><b>$lDescription</b></font></td> <td><font size=-1><b>$lCount</b></font></td> <td><font size=-1><b>$lPrice</b></font></td><td><font size=-1><b>$lTotal</b></font></td>\n");
          echo ("</tr>\n");
         }
-      printf(" <tr HEIGHT=\"23\">\n  <td>%s-%s</td> <td COLSPAN=\"3\">%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", $fjobs_row["day"], $fjobs_row["month"], $fjobs_row["Omschrijving"], $fjobs_row["Aantal"], $fjobs_row["Prijs"], $fjobs_row["total"]);
+      printf(" <tr HEIGHT=\"23\">\n  <td>%s</td> <td COLSPAN=\"3\">%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", date($lStrFTime,mktime(0,0,0,$fjobs_row["month"], $fjobs_row["day"], $fjobs_row["year"])), $fjobs_row["Omschrijving"], $fjobs_row["Aantal"], $fjobs_row["Prijs"], $fjobs_row["total"]);
 
       $totexclbtw = $totexclbtw + $fjobs_row["total"];
       $totbtw = $totbtw + $fjobs_row["totalbtw"];
@@ -92,7 +92,7 @@
    echo("</TR>");
   }
 $ThingsPresent = 'false';
-$things_result = mysql_query("select ThingID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, Aantal, Prijs, (Aantal*Prijs) as total, BTW, (BTW*0.01*Aantal*Prijs) as totalbtw from Things where BilledOnInv=$InvoiceID and CompanyID=$CompanyID order by Datum", $db);
+$things_result = mysql_query("select ThingID, CustomerID, Omschrijving, Datum, DAYOFMONTH(Datum)as day, MONTH(Datum)as month, YEAR(Datum) as year, Aantal, Prijs, (Aantal*Prijs) as total, BTW, (BTW*0.01*Aantal*Prijs) as totalbtw from Things where BilledOnInv=$InvoiceID and CompanyID=$CompanyID order by Datum", $db);
 checkMySQLError();
 if ($things_row = mysql_fetch_array($things_result))
   {
@@ -110,7 +110,7 @@
          echo ("   <td><font size=-1><b>$lDate</b></font></td> <td COLSPAN=\"3\"><font size=-1><b>$lDescription</b></font></td> <td><font size=-1><b>$lCount</b></font></td> <td><font size=-1><b>$lPrice</b></font></td><td><font size=-1><b>$lTotal</b></font></td>\n");
          echo ("</tr>\n");
         }
-      printf(" <tr HEIGHT=\"23\">\n  <td>%s-%s</td> <td COLSPAN=\"3\">%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", $things_row["day"], $things_row["month"], $things_row["Omschrijving"], $things_row["Aantal"], $things_row["Prijs"], $things_row["total"]);
+      printf(" <tr HEIGHT=\"23\">\n  <td>%s</td> <td COLSPAN=\"3\">%s</td> <td>%s</td> <td>%s</td> <td>%s</td> </tr>\n", date($lStrFTime,mktime(0,0,0,$things_row["month"], $things_row["day"], $things_row["year"])), $things_row["Omschrijving"], $things_row["Aantal"], $things_row["Prijs"], $things_row["total"]);
 
       $totexclbtw = $totexclbtw + $things_row["total"];
       $totbtw = $totbtw + $things_row["totalbtw"];
diff -uNr JobTracker-1.5.5/sistt-generalfunctions.php /kees/projects/naboo-httpd/html/jobs/sistt-generalfunctions.php
--- JobTracker-1.5.5/sistt-generalfunctions.php	Mon Oct 29 08:16:20 2001
+++ /kees/projects/naboo-httpd/html/jobs/sistt-generalfunctions.php	Mon May  6 15:39:36 2002
@@ -641,14 +641,23 @@
   *
   */
   function form_to_db($date, $delimiter="-" ) {
-      if (ereg ("([0-9]{1,2})$delimiter([0-9]{1,2})$delimiter([0-9]{2,4})", $date, $regs)) {
-          if(strlen($regs[1]) <2) $regs[1] = "0$regs[1]";
-          if(strlen($regs[2]) <2) $regs[2] = "0$regs[2]";
-          if(strlen($regs[3]) <4) $regs[3] = "20$regs[3]"; // this will work for the next 998 years
-          return "$regs[3]-$regs[2]-$regs[1]";
-      } else {
-          return FALSE;
+      $stamp=strtotime($date);
+      if ($stamp != -1)
+      {
+        return date("Ymd",$stamp);
       }
+      else
+      {
+        return FALSE;
+      }
+#      if (ereg ("([0-9]{1,2})$delimiter([0-9]{1,2})$delimiter([0-9]{2,4})", $date, $regs)) {
+#          if(strlen($regs[1]) <2) $regs[1] = "0$regs[1]";
+#          if(strlen($regs[2]) <2) $regs[2] = "0$regs[2]";
+#          if(strlen($regs[3]) <4) $regs[3] = "20$regs[3]"; // this will work for the next 998 years
+#          return "$regs[3]-$regs[2]-$regs[1]";
+#      } else {
+#          return FALSE;
+#      }
   }
 
   /**
@@ -661,7 +670,8 @@
       $d[day] = substr($date, 8, 2);
       $d[month] = substr($date, 5, 2);
       $d[year] = substr($date, 0, 4);
-      return $d[day].$delimiter.$d[month].$delimiter.$d[year];
+#      return $d[day].$delimiter.$d[month].$delimiter.$d[year];
+      return date("M d, Y",mktime(0,0,0,$d[month],$d[day],$d[year]));
   }
 
   function db_to_value($date) {
diff -uNr JobTracker-1.5.5/sistt-invoicefunctions.php /kees/projects/naboo-httpd/html/jobs/sistt-invoicefunctions.php
--- JobTracker-1.5.5/sistt-invoicefunctions.php	Tue Dec 11 10:25:30 2001
+++ /kees/projects/naboo-httpd/html/jobs/sistt-invoicefunctions.php	Thu Sep  5 10:09:27 2002
@@ -20,16 +20,23 @@
    require("lang/".$Language);
    $db = getDBConnection();
 
+   $company_result = mysql_query("select * from Companies where CompanyID=$CompanyID", $db);
+   $company_row = mysql_fetch_array($company_result);
+   checkMySQLError();
+
    $customer_result = mysql_query("select * from Klanten where CustomerID=$CustomerID and CompanyID=$CompanyID", $db);
    $customer_row = mysql_fetch_array($customer_result);
    checkMySQLError();
    mysql_close($db);
 
-   if ($Date==0){$date = date("d-m-Y");}
+   if ($Date==0){$date = date($lStrFTime);}
    else {$date = $Date;}
 
    echo "<center>";
-   echo("<TABLE WIDTH=\"640\" BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"0\" HEIGHT=\"945\">");
+   echo("<TABLE WIDTH=\"640\" BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"0\">");
+	/* HEIGHT=\"945\">"); */
+
+/*
    echo("  <TR HEIGHT=\"140\">");
    echo("    <TD  WIDTH=\"90\">");
    echo("    &nbsp;</TD>");
@@ -47,9 +54,46 @@
    echo("    &nbsp;</TD>");
    echo("  </TR>");
 
+*/
+
+
    echo("   <TR HEIGHT=\"130\">");
    echo("      <TD COLSPAN=\"4\" ROWSPAN=\"1\">");
    echo("	  <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"0\">");
+
+   echo("	     <TR VALIGN=\"TOP\" BGCOLOR=\"#ffffff\">");
+   echo("		<TD WIDTH=\"10\">");
+   echo("		   &nbsp;$lFrom:</TD>");
+   echo("		<TD>");
+   echo("		   <TABLE WIDTH=\"100%\" BORDER=\"1\" CELLSPACING=\"1\" CELLPADDING=\"0\">");
+   echo("		      <TR VALIGN=\"TOP\">");
+   echo("			 <TD>");
+   echo("			    <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"3\" CELLPADDING=\"0\">");
+   echo("			       <TR>");
+   printf("				  <TD><B>&nbsp;%s</B></TD>",$company_row["Naam"]);
+   echo("			       </TR>");
+   echo("			       <TR>");
+   printf("				  <TD><B>&nbsp;%s</B></TD>",$company_row["Adres"]);
+   echo("			       </TR>");
+   echo("			       <TR>");
+   printf("				  <TD><B>&nbsp;%s</B></TD>",$company_row["pcplaats"]);
+   echo("			       </TR>");
+   echo("			       <TR>");
+   printf("				  <TD><B>&nbsp;%s</B></TD>",$company_row["land"]);
+   echo("			       </TR>");
+   echo("			       <TR>");
+   printf("				  <TD><B>&nbsp;%s</B></TD>",$company_row["telno"]);
+   echo("			       </TR>");
+   echo("			    </TABLE>");
+   echo("			 </TD>");
+   echo("		      </TR>");
+   echo("		   </TABLE>");
+   echo("		</TD>");
+   echo("	     </TR>");
+
+
+
+
    echo("	     <TR VALIGN=\"TOP\" BGCOLOR=\"#ffffff\">");
    echo("		<TD WIDTH=\"10\">");
    echo("		   &nbsp;$lTo:</TD>");
@@ -70,12 +114,19 @@
    echo("			       <TR>");
    printf("				  <TD><B>&nbsp;%s</B></TD>",$customer_row["land"]);
    echo("			       </TR>");
+   echo("			       <TR>");
+   printf("				  <TD><B>&nbsp;%s</B></TD>",$customer_row["telno"]);
+   echo("			       </TR>");
    echo("			    </TABLE>");
    echo("			 </TD>");
    echo("		      </TR>");
    echo("		   </TABLE>");
    echo("		</TD>");
    echo("	     </TR>");
+
+
+
+
    echo("	  </TABLE>");
    echo("      </TD>");
    echo("      <TD COLSPAN=\"3\" ROWSPAN=\"1\">");
@@ -129,8 +180,11 @@
    echo("   <TR VALIGN=\"TOP\">");
    echo("      <TD COLSPAN=\"7\">");
    echo("	  <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"0\">");
+
+
+
    echo("	     <TR HEIGHT=\"1\">");
-   echo("		<TD  WIDTH=\"50\">");
+   echo("		<TD  WIDTH=\"120\">");
    echo("		   &nbsp;</TD>");
    echo("		<TD  WIDTH=\"170\">");
    echo("		   &nbsp;</TD>");
@@ -160,7 +214,7 @@
   {
    require("lang/".$Language);
    echo("<TR>");
-   echo("   <TD COLSPAN=\"4\">$lRemark</TD>");
+   echo("   <TD COLSPAN=\"4\">$lRemark: $opmerking</TD>");
    echo("</TR>");
   }
 
@@ -192,33 +246,35 @@
    echo("		    <TR HEIGHT=\"23\">");
    echo("		       <TD WIDTH=\"320\">");
    echo("			  &nbsp;</TD>");
-   echo("		       <TD WIDTH=\"230\">");
+   echo("		       <TD VALIGN=TOP WIDTH=\"230\">");
    echo("			  &nbsp;$lCurrency</TD>");
-   echo("		       <TD WIDTH=\"90\">");
-   echo("			  &nbsp;$CURRENCY <img src=\"./images/topline.gif\" HEIGHT=\"1\" BORDER=\"0\"></TD>");
+   echo("		       <TD VALIGN=TOP WIDTH=\"90\">");
+   echo("			  &nbsp;$CURRENCY<BR><HR></TD>\n");
+/* <img src=\"./images/topline.gif\" HEIGHT=\"1\" BORDER=\"0\"></TD>"); */
    echo("		    </TR>");
    echo("		    <TR HEIGHT=\"23\">");
    echo("		       <TD>");
    echo("			  &nbsp;</TD>");
-   echo("		       <TD>");
+   echo("		       <TD VALIGN=TOP>");
    echo("			  &nbsp;$lTotalExclVat</TD>");
-   echo("		       <TD>");
+   echo("		       <TD VALIGN=TOP>");
    echo("			  &nbsp;$totexclbtw</TD>");
    echo("		    </TR>");
    echo("		    <TR HEIGHT=\"23\">");
    echo("		       <TD>");
    echo("			  <CENTER>&nbsp;<B>$lPaymentIn <U>$Daystopay</U> $lDays</B></CENTER></TD>");
-   echo("		       <TD>");
+   echo("		       <TD VALIGN=TOP>");
    echo("			  &nbsp;$lTotalVat</TD>");
-   echo("		       <TD>");
-   echo("			  &nbsp;$totbtw <img src=\"./images/topline.gif\" HEIGHT=\"1\" BORDER=\"0\"></TD>");
+   echo("		       <TD VALIGN=TOP>");
+   echo("			  &nbsp;$totbtw <BR><HR></TD>\n");
+/* <img src=\"./images/topline.gif\" HEIGHT=\"1\" BORDER=\"0\"></TD>"); */
    echo("		    </TR>");
    echo("		    <TR HEIGHT=\"23\">");
    echo("		       <TD>");
    echo("			  &nbsp;</TD>");
-   echo("		       <TD>");
+   echo("		       <TD VALIGN=TOP>");
    echo("			  &nbsp;$lToPay</TD>");
-   echo("		       <TD>");
+   echo("		       <TD VALIGN=TOP>");
    echo("			  &nbsp;<B>$tot</B></TD>");
    echo("		    </TR>");
    echo("		 </TABLE>");
diff -uNr JobTracker-1.5.5/sistt.php /kees/projects/naboo-httpd/html/jobs/sistt.php
--- JobTracker-1.5.5/sistt.php	Sun Oct 28 06:36:34 2001
+++ /kees/projects/naboo-httpd/html/jobs/sistt.php	Mon May  6 15:54:47 2002
@@ -119,7 +119,8 @@
    else
      {
       echo "<a href='$PHP_SELF?lang=nl'><img src='images/lang_nl.gif' border=0 alt='Nederlands'></a>\n";
-      echo "<a href='$PHP_SELF?lang=eng'><img src='images/lang_gb.gif' border=0 alt='English'></a>\n";
+      echo "<a href='$PHP_SELF?lang=en'><img src='images/lang_gb.gif' border=0 alt='UK English'></a>\n";
+      echo "<a href='$PHP_SELF?lang=us_en'><img src='images/lang_us.gif' border=0 alt='US English'></a>\n";
       echo "<a href='$PHP_SELF?lang=it'><img src='images/lang_it.gif' border=0 alt='Italian'></a>\n";
      }
 
