Question

How to make the form processor that will accept the value of multiple checkboxes?

Asked by: evibesmusic

Experts,

I have created a table that places information from the db in each column.  In the loop that creates the table I have also added a checkbox that appears in the last column of each row.  I need to create a form processor that will allow the user to check each box that they would like to show up on another page.

For example, if they click on a check box next to report one, it will show up on page 1.  If they unclick the box, then it will not appear on page 1.  In addition, I need the boxes to remain checked if the value in the database is equal to Yes.  If the value is No, then the box should remain unchecked.  The default value in the database is No.

I have included my code which creates the table below.  Can anyone offer any starting points?

// CALL ALL REPORTS FROM THE DB AND ORDER THEM BY 'Name'
$sql2="SELECT * FROM controller_reports ORDER BY Name";
$data = mysql_query($sql2) or die ("Could not run query: " . $sql2 . "<br />\n" . mysql_error () );
            
// IF 'cmd' HAS NOT BEEN INITIALIZED, SHOW THE LIST OF CONTROLLERS IN MEMORY
if(!isset($_GET['cmd']))
{
      // 'cmd' HAS NOT BEEN INITIALIZED THERFORE SHOW THE LIST OF CONTROLLERS
      echo "Please select the report you would like to edit or delete.  
      Check the box next to each report you would like to appear on the 'Current' reports page.";
      echo "</br></br>";
      echo "<b>Note:</b> You can sort any column by clicking on the column's title.";
      echo "</br></br>";
      echo "PPR =  Pay Period Report";
      echo "<div align='center'>";
      echo "<form name='form' method='post' action='http://diablo.ca.kp.org/dept/controller/show_process.php'>";
      echo '<table id="myTable" width="100%" border="0" cellspacing="3" cellpadding="3" style="font-size:10px;">';
      echo '<thead>';
      echo '<tr><td colspan="8" align="right">
      <input name="submit" type="submit" value="go" style="margin-right:5px;" />
      </td></tr>';
      echo '<tr>';
      echo '<th><b><u>Report Name</u></b></th>';
      echo '<th><b><u>Year</u></b></th>';
      echo '<th><b><u>Month</u></b></th>';
      echo '<th><b><u>Date</u></b></th>';
      echo '<th><b><u>PPR</u></b></th>';
      echo '<th><b><u>PPR Desc.</u></b></th>';
      echo '<th><b><u>Action</u></b></th>';
      echo '<th><b><u>Show</u></b></th>';
      echo '</tr>';
      echo '</thead>';
      echo '<tbody>';
      
      // THIS SETS UP THE COLOR STYLE FOR EACH ROW, INSIDE THE WHILE LOOP WE WILL ASK THE COLORS TO ALTERNATE
      $style = 0;
      
      // THIS WHILE LOOP CREATES ROW AFTER ROW OF CONTROLLER UNTIL THERE ARE NO MORE CONTROLLERS TO LIST
      while ($getinfo2 = mysql_fetch_assoc($data)){
      
      //inside the loop change the class of the row/column
      //(based on a style sheet). you could also directly specify
      //a background colour here
            if($style == 1) {
             $tclass = "row1";
             $style = 0;
            } else {
             $tclass = "row2";
             $style = 1;
            }
      
            // GRAB THE UNIQUE 'id' OF EACH USER
            $id=$getinfo2["id"];//take out the id
            
            echo '
            <tr class="'.$tclass.'" style="padding-top:4px; padding-bottom:4px;">
            <td>'.$getinfo2['Name'].'</td>
            <td>'.$getinfo2['Year'].'</td>
            <td>'.$getinfo2['Month'].'</td>
            <td>'.$getinfo2['Date'].'</td>
            <td>'.$getinfo2['PayPeriod'].'</td>
            <td>'.$getinfo2['Ending'].'</td>
            <td>
            <a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id='.$getinfo2['id'].'"
            title="Edit '.$getinfo2['Name'].' of: '.$getinfo2['Date'].'">Edit</a> -
            <a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id='.$getinfo2['id'].'"
            ';
            
            // THIS ONCLICK EVENT GIVES YOU THE POP UP MESSAGE TO CONFIRM THAT YOU WANT TO DELETE THIS ACCOUNT
            echo'
            onclick="return confirm(&quot;Are you sure you would like to\nDELETE '.$getinfo2['Name'].' of: '.$getinfo2['Date'].'\n\nPlease click \'OK\' to delete or \'CANCEL\' to go back.&quot;)"
            title="Delete '.$getinfo2['Name'].' of: '.$getinfo2['Date'].'">Delete</a>
            </td>
            <td><input name="Show" type="checkbox" value="Yes" title="Checked = Yes | Unchecked = No" /></td>
            </tr>';
            
      }// END WHILE LOOP
// CLOSE THE TABLE
echo '</tbody>';
echo '<tr><td colspan="8" align="right">
<input name="submit" type="submit" value="go" style="margin-right:5px;" />
</td></tr>';
echo '</table>';
echo '</form>';
echo "</div>";
}

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2009-11-06 at 16:57:13ID24879771
Tags

php

,

mysql

Topics

PHP and Databases

,

PHP Scripting Language

Participating Experts
5
Points
500
Comments
27

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. IE padding or margin issue
    This css works perfectly in Firefox and Opera. But in Internet Explorer 6 there a problem under the div #buy-zone. The #buy-zone div show stay flush with div #content but there a space underneath. I can't find what's causing the problem. The problem is even worse if you incre...
  2. DIV padding/margin settings
    I having a bit of a problem with my website, mainly the padding/margin of a <div>. if you take a look at http://www.bluehatmedia.co.uk/spanishproperty/ you will notice in the blue text area at the bottom if I add padding to the div to the left it expands the layout of ...
  3. DIV border, margin, padding problem in CSS
    I have a <div>. This div have a solid border. I also want an outside 'gap' of 8px all around the div. I also want to have a 'gap' inside the <div> of 8px, so the text inside don't touch the border. So far I did in my CSS: background : #FFFFFF url('ContentBoxS...

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: elvin66Posted on 2009-11-06 at 17:30:36ID: 25764555

First of all, you should give each checkbox a unique name not just 'Show'. You are using a loop so you could create a counter and append the name with the counter number as in

$count = 1;
$check_name = "show".$count;

and before the very end of the loop put

$count++

Now, in your code replace
<td><input name="Show" type="checkbox" value="Yes" title="Checked = Yes | Unchecked = No" /></td>

with

<td><input name=".$check_name." type="checkbox" value="Yes" title="Checked = Yes | Unchecked = No" /></td>

Also, you need to do a query before this loop or during it to see if the value in the database is yes or no (or whatever the values are) so I would modify the final code to read something like:

if($value == 'yes'){
echo "<td><input name=".$check_name." type='checkbox' value='Yes' Checked = true></td>";
}else{
echo "<td><input name=".$check_name." type="checkbox" value="No"></td>";
}


Now for the final part of your question, how to send those values to a new page, the checkbox is part of the form so the name and value of each checkbox will be sent to the new page with the users choice. So on that page you just need some 'if' statements to work out if each one has been checked or not.

Hope this has been some help


 

by: HainKurtPosted on 2009-11-06 at 17:34:03ID: 25764563

first of all you need to add unique values to chkboxes (I am not familier with php, sorry if i make some mistakes)

<input name="show" type="checkbox" value="'.$getinfo2["id"].'" title="Checked = Yes | Unchecked = No" '.???.' />

so, you will have the chknames values will be 12,45,78

on the next page when you request form variables for show, you will get "12,45,78" and you can use it directly in dynamic sql or split and loop through... its up to you...

??? should be something like this : if dbvalue="yes" then "checked" else ""
dont know how to write this

 

by: HainKurtPosted on 2009-11-06 at 17:35:45ID: 25764566

elvin66, if they have the same name, on the next page we can get all values with coma seperated text like "12,34'36,52" in one shot, no need for counters & loop...

 

by: Ray_PaseurPosted on 2009-11-06 at 17:37:29ID: 25764568

Experiment with this script a little bit - you should be able to see the moving parts of the HTML and the PHP fairly well.  Then post back here with any questions.  Best, ~Ray

<?php // RAY_checkboxes.php DEMONSTRATE HOW CHECKBOXES WORK IN FORM AND ACTION SCRIPTS
error_reporting(E_ALL); 
// IF ANYTHING HAS BEEN POSTED, SHOW THE CONTENTS
if (!empty($_POST))
{
   echo "<pre>";
   echo "\$_POST CONTAINS:\n";
   var_dump($_POST);
   echo "</pre> \n";
}
?>
<form method="POST"> 
These checkboxes have names...<br/>
Check or Uncheck Some Boxes Here<br/>
<input name=box1 type="checkbox" value="Box1"><br/>
<input name=box2 type="checkbox" value="Box2"><br/>
<input name=box3 type="checkbox"><br/>
<input name=box4 type="checkbox"><br/>
<br /> 
These checkboxes are part of the "box" array...<br/>
Check or Uncheck Some Boxes Here<br/>
<input name=box[] type="checkbox" value="ABox1"><br/>
<input name=box[] type="checkbox" value="ABox2"><br/>
<input name=box[] type="checkbox" value="ABox3"><br/>
<input name=box[] type="checkbox" value="ABox4"><br/>
<input type="submit" value="go" />
</form>
                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:

Select allOpen in new window

 

by: asafadisPosted on 2009-11-06 at 17:44:38ID: 25764586

I would suggest naming the checkboxes in such a way that PHP would interpret the results as an array.  For example:

<input type="checkbox" name="Show[123456]" />

<?php 
echo '<input name="Show[' . $getinfo2['id'] . ']" type="checkbox" value="Yes" title="Checked = Yes | Unchecked = No" />'; 
// This should return something like:
Array
(
    [Show] => Array
        (
            [22222] => on
            [33333] => on
        ) 
)

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:

Select allOpen in new window

 

by: binal0072003Posted on 2009-11-06 at 18:20:04ID: 25764707

The best way to do is using array as name

<input type="checkbox" name="Show[]" />

<input type="checkbox" name="Show[]" />

<input type="checkbox" name="Show[]" />

on the next page you can access all checkbox with foreach

foreach($_post['show'] as $check){

 code to process check box
}

 

by: evibesmusicPosted on 2009-11-06 at 18:57:45ID: 25764784

@elvin66 and Ray_Paseur:

If I am using a loop to create the table, can't i use the unique IDs of each row in order to assign a unique name to each iteration of each checkbox?  Won't this save me the trouble of having to use a count++ function and an array?

EVM

 

by: elvin66Posted on 2009-11-06 at 19:42:07ID: 25764884

Well firstly it is no trouble to use $count you just type '$count'. On the other hand, I'm not sure the row actually has a unique number that you can easily access. May Ray could tell us. You may be correct there. I guess it comes down to personal choice, I always use $i as a counter. It is short and takes up less bytes than $count but that's all.

 

by: Ray_PaseurPosted on 2009-11-07 at 08:50:18ID: 25766999

"can't i use the unique IDs of each row" - I think the answer is "yes" and it's easy to do, however I don't really know where your unique IDs are coming from.  You probably want to assign the name and value to the HTML form element in a way that lets you see what row(s) were checked, right?

 

by: evibesmusicPosted on 2009-11-07 at 09:39:00ID: 25767191

@Ray_Paseur:

Hello Ray.  The IDs are coming from the ID column in the DB.  This column is unique in that each time a new row is created in the database, it is assigned a unique number under the ID column.  I've used this column to assign a unique name to each for element (checkbox) which is created during the loop.

I've provided my code below which now creates the form with unique name tags for each for element (checkbox).  Now I am kinda stuck because I can't wrap my brain around how to process the information sent from the form.  Any suggestions?

THIS CODE IS INSIDE THE LOOP THAT I'VE USED TO CREATE MY TABLE.  IT READS THE VALUE OF THE 'SHOW' COLUMN AS EITHER A 1 = YES or 0 = NO AND DISPLAYS THE CHECK BOX ACCORDINGLY.  IT USES THE UNIQUE NUMBERS STORED IN THE 'ID' COLUMN TO ASSIGN UNIQUE NAMES TO EACH CHECKBOX.
 
if($getinfo2['Show'] == '1'){
echo "<input name=".$getinfo2['id']." type='checkbox' value='1' Checked = true>";
}elseif($getinfo2['Show'] == '0'){
echo "<input name=".$getinfo2['id']." type='checkbox' value='0'>";
}
                                              
1:
2:
3:
4:
5:
6:
7:

Select allOpen in new window

 

by: binal0072003Posted on 2009-11-07 at 10:11:25ID: 25767327

use foreach to get each record and modify it your way.

<?php 
/*
The best way to do is change the check box value 
use <input name="Show[]" type="checkbox" value="<?php $getinfo2['id'] ?>" title="Checked = Yes | Unchecked = No" />
*/ 

// CALL ALL REPORTS FROM THE DB AND ORDER THEM BY 'Name'
$sql2="SELECT * FROM controller_reports ORDER BY Name";
$data = mysql_query($sql2) or die ("Could not run query: " . $sql2 . "<br />\n" . mysql_error () );
            
// IF 'cmd' HAS NOT BEEN INITIALIZED, SHOW THE LIST OF CONTROLLERS IN MEMORY
if(!isset($_GET['cmd']))
{
      // 'cmd' HAS NOT BEEN INITIALIZED THERFORE SHOW THE LIST OF CONTROLLERS
      echo "Please select the report you would like to edit or delete.  
      Check the box next to each report you would like to appear on the 'Current' reports page.";
      echo "</br></br>";
      echo "<b>Note:</b> You can sort any column by clicking on the column's title.";
      echo "</br></br>";
      echo "PPR =  Pay Period Report";
      echo "<div align='center'>";
      echo "<form name='form' method='post' action='http://diablo.ca.kp.org/dept/controller/show_process.php'>";
      echo '<table id="myTable" width="100%" border="0" cellspacing="3" cellpadding="3" style="font-size:10px;">';
      echo '<thead>';
      echo '<tr><td colspan="8" align="right">
      <input name="submit" type="submit" value="go" style="margin-right:5px;" />
      </td></tr>';
      echo '<tr>';
      echo '<th><b><u>Report Name</u></b></th>';
      echo '<th><b><u>Year</u></b></th>';
      echo '<th><b><u>Month</u></b></th>';
      echo '<th><b><u>Date</u></b></th>';
      echo '<th><b><u>PPR</u></b></th>';
      echo '<th><b><u>PPR Desc.</u></b></th>';
      echo '<th><b><u>Action</u></b></th>';
      echo '<th><b><u>Show</u></b></th>';
      echo '</tr>';
      echo '</thead>';
      echo '<tbody>';
      
      // THIS SETS UP THE COLOR STYLE FOR EACH ROW, INSIDE THE WHILE LOOP WE WILL ASK THE COLORS TO ALTERNATE
      $style = 0;
      
      // THIS WHILE LOOP CREATES ROW AFTER ROW OF CONTROLLER UNTIL THERE ARE NO MORE CONTROLLERS TO LIST
      while ($getinfo2 = mysql_fetch_assoc($data)){
      
      //inside the loop change the class of the row/column
      //(based on a style sheet). you could also directly specify
      //a background colour here
            if($style == 1) {
             $tclass = "row1";
             $style = 0;
            } else {
             $tclass = "row2";
             $style = 1;
            }
      
            // GRAB THE UNIQUE 'id' OF EACH USER
            $id=$getinfo2["id"];//take out the id
            
            echo '
            <tr class="'.$tclass.'" style="padding-top:4px; padding-bottom:4px;">
            <td>'.$getinfo2['Name'].'</td>
            <td>'.$getinfo2['Year'].'</td>
            <td>'.$getinfo2['Month'].'</td>
            <td>'.$getinfo2['Date'].'</td>
            <td>'.$getinfo2['PayPeriod'].'</td>
            <td>'.$getinfo2['Ending'].'</td>
            <td>
            <a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id='.$getinfo2['id'].'"
            title="Edit '.$getinfo2['Name'].' of: '.$getinfo2['Date'].'">Edit</a> -
            <a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id='.$getinfo2['id'].'"
            ';
            
            // THIS ONCLICK EVENT GIVES YOU THE POP UP MESSAGE TO CONFIRM THAT YOU WANT TO DELETE THIS ACCOUNT
            echo'
            onclick="return confirm(&quot;Are you sure you would like to\nDELETE '.$getinfo2['Name'].' of: '.$getinfo2['Date'].'\n\nPlease click \'OK\' to delete or \'CANCEL\' to go back.&quot;)"
            title="Delete '.$getinfo2['Name'].' of: '.$getinfo2['Date'].'">Delete</a>
            </td>
            <td><input name="Show[]" type="checkbox" value="'.$getinfo2['id'].'" title="Checked = Yes | Unchecked = No" /></td>
            </tr>';
            
      }// END WHILE LOOP
// CLOSE THE TABLE
echo '</tbody>';
echo '<tr><td colspan="8" align="right">
<input name="submit" type="submit" value="go" style="margin-right:5px;" />
</td></tr>';
echo '</table>';
echo '</form>';
echo "</div>";
} 
 

/*
on the next page use following 
*/ 
if(isset($_POST['cmd']){
// this will run if the user click on next
echo "<table>"
echo "<tr><th></th></tr>";z
foreach($_POST['show'] as $id){ 
$sql = "select * from controller_reports where id={$id}"
/*
using this create a row of the record,
if the ckeck box is not checked the $id will be empty $id=''
so it will not get any record 
this way you can contraol each record checked
*/
}
echo "</table>" 

}
else{ 
} 

?>

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:

Select allOpen in new window

 

by: Ray_PaseurPosted on 2009-11-07 at 10:38:51ID: 25767474

Have you tried using var_dump() to visualize the data in $_POST?  Once you see the information that is posted by the form, it's usually easy to follow what the logic should be.  Just a thought, ~Ray

 

by: elvin66Posted on 2009-11-07 at 12:11:55ID: 25767822

Or try this code on top of your page then run it. You will see a printout of every posted value.

session_start();
if(is_array($_REQUEST)) {
              foreach($_REQUEST as $key => $value) {
                        $_SESSION[$key]      = $value;
              }
      }
print_r($_REQUEST);

                                              
1:
2:
3:
4:
5:
6:
7:

Select allOpen in new window

 

by: Ray_PaseurPosted on 2009-11-07 at 14:36:41ID: 25768403

@elvin66: Not only will you see it, courtesy of print_r() but you will also copy it into the session array - which might or might not make sense.  No extra credit for injecting more unnecessary variables, I don't think!

;-)

~Ray

 

by: evibesmusicPosted on 2009-11-09 at 10:55:04ID: 25778782

@elvin66 & Ray_Paseur:

Ok, using the print_r code you provided, my form seems to be passing the data (or saving the data in an array) to my form processor.  The information printed out as follows:

Array ( [submit] => go [569] => 1 [570] => 1 [571] => 1 [572] => 1 [573] => 1 [574] => 1 [575] => 1 [576] => 1 [577] => 1 [578] => 1 [579] => 1 [580] => 1 [581] => 1 [582] => 1 [583] => 1 [584] => 1 [585] => 1 [586] => 1 [587] => 1 [588] => 1 [589] => 1 [590] => 1 [591] => 1 [WT_FPC] => id=2ddc8ba3d58c4bdffbd1257550718016:lv=1257789903241:ss=1257789903241 [PHPSESSID] => 7dh3cclc35bnm80ja2oadih246 )

I double checked the source code of my table with the checkboxes and the numbers 569-591 refer to the unique names given to each checkbox in the form which is great.  It also shows the value listed in the DB as '1' which indicates that the checkbox is checked.  This means that each checkbox is being given a unique name as intended using the IF statement:

if($getinfo2['Show'] == '1'){
echo "<input name=".$getinfo2['id']." type='checkbox' value='1' Checked = true>";
}elseif($getinfo2['Show'] == '0'){
echo "<input name=".$getinfo2['id']." type='checkbox' value='0'>";
}

Now that I have the information stored in the array properly, can anyone help me understand how I can pass those values to my DB?  Meaning, I need to pass the value of '1' into the column 'Checked', where ID=569, 570, 571...591.

I hope that this makes sense?  Let me know if either of you have any questions.  Thanks for all of your help.  This has been a great learning experience.  Cheers!

 

by: Ray_PaseurPosted on 2009-11-09 at 11:17:35ID: 25779018

Can you please show us the query that would update the data base table to do these two things:

Update the table to set #569 to 'ABC'
Update the table to set #570 to "DEF'

Also, please post your table definition, maybe the CREATE TABLE statement.

One other thing to think about.  The $_REQUEST array has data from three other arrays - GET, POST and COOKIE by default.  See: http://us.php.net/manual/en/reserved.variables.request.php

If you are going to use $_REQUEST you might want to know whether one of the elements came from GET or POST - these arrays serve different purposes.

 

by: evibesmusicPosted on 2009-11-09 at 12:20:51ID: 25779581

@Ray_Paseur:

I would imagine that the query would look something like this:  UPDATE controller_reports WHERE ID=[569] SET Checked='1'

Basically, if the 'name' appears in the array (i.e. 569, 570...591) set the value of 'Checked' equal to '1'.  If the name does not appear in the array, then do nothing.

If I am understanding you correctly, the CREATE TABLE statement is not necessary as the table already exists.  Is that what you are implying?  Sorry if I an not understanding.

As far as the $_REQUEST function, I guess I don't know enough about it to be dangerous.  I had assumed that the information that we see in the array came from the POST method as that is what is defined in the form's code in my original post.

I hope that I am addressing your post correctly, please correct me if I am not.  Thanks Ray!

 

by: Ray_PaseurPosted on 2009-11-09 at 12:37:01ID: 25779752

The CREATE TABLE statement is useful because it can tell me the names of the columns and the data types.  You can copy all that information out longhand, but the output of SHOW CREATE TABLE will be more accurate and less time-consuming.

There is no way that this can be an accurate SQL query:
UPDATE controller_reports WHERE ID=[569] SET Checked='1'

If you have any queries that you are using today, please copy one of those and post it here, along with that CREATE TABLE statement.  Once I have those I may be able to show you how to handle the checkmarks.

The order of the variables in $_REQUEST is a different issue, and one related to security.  If you assume that the contents of $_REQUEST came from POST, but an attacker typed in the URL with a GET query string that contained arguments that "looked" like the post arguments, you would want to know that and avoid using the attack arguments.  If you are not clear on this point, please read the link here very carefully, paying attention to the order of the elements in the array $_REQUEST.  You need to know what order these elements are in.
http://us.php.net/manual/en/reserved.variables.request.php

 

by: evibesmusicPosted on 2009-11-09 at 12:50:07ID: 25779903

@Ray_Paseur:

Thanks for being patient.  I am a still learning.  Here is the CREATE TABLE statement:

CREATE TABLE `controller_reports` (
  `id` int(11) NOT NULL auto_increment,
  `Name` text NOT NULL,
  `Month` text NOT NULL,
  `Year` text NOT NULL,
  `Date` text NOT NULL,
  `Access` text NOT NULL,
  `PayPeriod` text NOT NULL,
  `Ending` text NOT NULL,
  `File` text NOT NULL,
  `FilePath` text NOT NULL,
  `Checked` text NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=607 ;

The only queries that I have used are the queries that create the actual table with the checkboxes.  I have not created a query yet to handle anything else.  i understand that the query that I just provided in my last post is not valid but, I guess I was just trying to explain in English what I am trying to accomplish.

 

by: Ray_PaseurPosted on 2009-11-09 at 12:55:43ID: 25779957

Got it.  Might want to save yourself some trouble by stopping this line of work for a while and taking a course in how to use MYSQL.  I'm not saying that tongue-in-cheek at all - it would really help you to get a foundation in the way SQL data bases work.  The data types are important, and "text" is probably not a good choice for most of them.

The next thing we would need to know is how the values from this table get populated into the HTML form.  Once we know that, we will know by inference how the HTML form sends the data back to the PHP action script, then we can construct an UPDATE statement to set fields in the DB table.

 

by: evibesmusicPosted on 2009-11-09 at 14:19:35ID: 25780741

@Ray_Paseur:

Your comment about taking a course on MYSQL is very valid.  I only started programming in PHP cause someone had asked me to do so a while ago.  I know there is a whole world out there that I am missing.  Problem is, I can't seem to find anyone in my immediate area that offers courses in SQL.  Do you have any recommendations?  Maybe online courses?

The values in the table are populated using an SQL query and a while loop as in my first post:
SELECT * FROM controller_reports ORDER BY Name

Within the while loop the IF statement creates the checkboxes inside the form by evaluating the value of the 'Checked' column in the DB. In order to assign a unique 'name' element to each checkbox, I used the unique or auto-incramenting numbers in the 'ID' column in the DB.

 

by: Ray_PaseurPosted on 2009-11-09 at 14:27:16ID: 25780813

Sigh.  In the code posted with the question the checkboxes were all named the same, "Show".

In the first post on this thread, the first statement was, "First of all, you should give each checkbox a unique name not just 'Show'."

It looks like you did something about that in  ID: 2576719.  Unfortunately I cannot decipher the PHP into HTML, so I don't really know what your PHP is generating in the form.  Let's try this.  Run the form script and do the "view source" then post the output of that in the code snippet here.

 

by: evibesmusicPosted on 2009-11-09 at 14:39:37ID: 25780906

@Ray_Paseur:

The code is attached.  Per your avatar please don't pull out the rest of your hair.  Sorry.

<form name='form' method='post' action='http://diablo.ca.kp.org/dept/controller/show_process.php'><table id="myTable" width="100%" border="0" cellspacing="3" cellpadding="3" style="font-size:10px;"><thead><tr><td colspan="8" align="right">
					<input name="submit" type="submit" value="go" style="margin-right:5px;" />
					</td></tr><tr><th><b><u>Report Name</u></b></th><th><b><u>Year</u></b></th><th><b><u>Month</u></b></th><th><b><u>Date</u></b></th><th><b><u>PPR</u></b></th><th><b><u>PPR Desc.</u></b></th><th><b><u>Action</u></b></th><th><b><u>Show</u></b></th></tr></thead><tbody>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Activity Report</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=569" 
					title="Edit Activity Report of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=569"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Activity Report of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Activity Report of: 2009-10-15">Delete</a>
					</td>
					<td><input name=569 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Activity Report</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=339" 
					title="Edit Activity Report of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=339"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Activity Report of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Activity Report of: 2009-1-1">Delete</a>
					</td>
					<td><input name=339 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Activity Report</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-06</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=601" 
					title="Edit Activity Report of: 2009-2-06">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=601"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Activity Report of: 2009-2-06\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Activity Report of: 2009-2-06">Delete</a>
					</td>
					<td><input name=601 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Activity Report</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=383" 
					title="Edit Activity Report of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=383"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Activity Report of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Activity Report of: 2009-3-1">Delete</a>
					</td>
					<td><input name=383 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Activity Report</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=407" 
					title="Edit Activity Report of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=407"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Activity Report of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Activity Report of: 2009-4-1">Delete</a>
					</td>
					<td><input name=407 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Activity Report</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=431" 
					title="Edit Activity Report of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=431"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Activity Report of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Activity Report of: 2009-5-1">Delete</a>
					</td>
					<td><input name=431 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Activity Report</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=455" 
					title="Edit Activity Report of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=455"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Activity Report of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Activity Report of: 2009-6-1">Delete</a>
					</td>
					<td><input name=455 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Activity Report</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=479" 
					title="Edit Activity Report of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=479"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Activity Report of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Activity Report of: 2009-7-1">Delete</a>
					</td>
					<td><input name=479 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Activity Report</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=503" 
					title="Edit Activity Report of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=503"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Activity Report of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Activity Report of: 2009-8-1">Delete</a>
					</td>
					<td><input name=503 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=570" 
					title="Edit Admin Units of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=570"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-10-15">Delete</a>
					</td>
					<td><input name=570 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=340" 
					title="Edit Admin Units of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=340"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-1-1">Delete</a>
					</td>
					<td><input name=340 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>October</td>
					<td>2009-11-06</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=606" 
					title="Edit Admin Units of: 2009-11-06">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=606"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-11-06\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-11-06">Delete</a>
					</td>
					<td><input name=606 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=360" 
					title="Edit Admin Units of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=360"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-2-1">Delete</a>
					</td>
					<td><input name=360 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=384" 
					title="Edit Admin Units of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=384"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-3-1">Delete</a>
					</td>
					<td><input name=384 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=408" 
					title="Edit Admin Units of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=408"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-4-1">Delete</a>
					</td>
					<td><input name=408 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=432" 
					title="Edit Admin Units of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=432"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-5-1">Delete</a>
					</td>
					<td><input name=432 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=456" 
					title="Edit Admin Units of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=456"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-6-1">Delete</a>
					</td>
					<td><input name=456 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=480" 
					title="Edit Admin Units of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=480"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-7-1">Delete</a>
					</td>
					<td><input name=480 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Admin Units</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=504" 
					title="Edit Admin Units of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=504"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Admin Units of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Admin Units of: 2009-8-1">Delete</a>
					</td>
					<td><input name=504 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>AOMS Details</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=571" 
					title="Edit AOMS Details of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=571"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE AOMS Details of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete AOMS Details of: 2009-10-15">Delete</a>
					</td>
					<td><input name=571 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>AOMS Details</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=341" 
					title="Edit AOMS Details of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=341"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE AOMS Details of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete AOMS Details of: 2009-1-1">Delete</a>
					</td>
					<td><input name=341 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>AOMS Details</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=361" 
					title="Edit AOMS Details of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=361"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE AOMS Details of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete AOMS Details of: 2009-2-1">Delete</a>
					</td>
					<td><input name=361 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>AOMS Details</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=385" 
					title="Edit AOMS Details of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=385"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE AOMS Details of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete AOMS Details of: 2009-3-1">Delete</a>
					</td>
					<td><input name=385 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>AOMS Details</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=409" 
					title="Edit AOMS Details of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=409"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE AOMS Details of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete AOMS Details of: 2009-4-1">Delete</a>
					</td>
					<td><input name=409 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>AOMS Details</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=433" 
					title="Edit AOMS Details of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=433"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE AOMS Details of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete AOMS Details of: 2009-5-1">Delete</a>
					</td>
					<td><input name=433 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>AOMS Details</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=457" 
					title="Edit AOMS Details of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=457"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE AOMS Details of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete AOMS Details of: 2009-6-1">Delete</a>
					</td>
					<td><input name=457 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>AOMS Details</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=481" 
					title="Edit AOMS Details of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=481"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE AOMS Details of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete AOMS Details of: 2009-7-1">Delete</a>
					</td>
					<td><input name=481 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>AOMS Details</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=505" 
					title="Edit AOMS Details of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=505"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE AOMS Details of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete AOMS Details of: 2009-8-1">Delete</a>
					</td>
					<td><input name=505 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance Month</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=572" 
					title="Edit Budget Performance Month of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=572"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance Month of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance Month of: 2009-10-15">Delete</a>
					</td>
					<td><input name=572 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance Month</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=342" 
					title="Edit Budget Performance Month of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=342"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance Month of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance Month of: 2009-1-1">Delete</a>
					</td>
					<td><input name=342 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance Month</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=362" 
					title="Edit Budget Performance Month of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=362"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance Month of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance Month of: 2009-2-1">Delete</a>
					</td>
					<td><input name=362 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance Month</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=386" 
					title="Edit Budget Performance Month of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=386"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance Month of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance Month of: 2009-3-1">Delete</a>
					</td>
					<td><input name=386 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance Month</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=410" 
					title="Edit Budget Performance Month of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=410"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance Month of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance Month of: 2009-4-1">Delete</a>
					</td>
					<td><input name=410 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance Month</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=434" 
					title="Edit Budget Performance Month of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=434"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance Month of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance Month of: 2009-5-1">Delete</a>
					</td>
					<td><input name=434 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance Month</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=458" 
					title="Edit Budget Performance Month of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=458"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance Month of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance Month of: 2009-6-1">Delete</a>
					</td>
					<td><input name=458 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance Month</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=482" 
					title="Edit Budget Performance Month of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=482"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance Month of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance Month of: 2009-7-1">Delete</a>
					</td>
					<td><input name=482 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance Month</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=506" 
					title="Edit Budget Performance Month of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=506"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance Month of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance Month of: 2009-8-1">Delete</a>
					</td>
					<td><input name=506 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance YTD</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=573" 
					title="Edit Budget Performance YTD of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=573"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance YTD of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance YTD of: 2009-10-15">Delete</a>
					</td>
					<td><input name=573 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance YTD</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=363" 
					title="Edit Budget Performance YTD of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=363"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance YTD of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance YTD of: 2009-2-1">Delete</a>
					</td>
					<td><input name=363 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance YTD</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=387" 
					title="Edit Budget Performance YTD of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=387"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance YTD of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance YTD of: 2009-3-1">Delete</a>
					</td>
					<td><input name=387 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance YTD</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=411" 
					title="Edit Budget Performance YTD of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=411"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance YTD of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance YTD of: 2009-4-1">Delete</a>
					</td>
					<td><input name=411 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance YTD</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=435" 
					title="Edit Budget Performance YTD of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=435"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance YTD of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance YTD of: 2009-5-1">Delete</a>
					</td>
					<td><input name=435 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance YTD</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=459" 
					title="Edit Budget Performance YTD of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=459"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance YTD of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance YTD of: 2009-6-1">Delete</a>
					</td>
					<td><input name=459 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance YTD</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=483" 
					title="Edit Budget Performance YTD of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=483"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance YTD of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance YTD of: 2009-7-1">Delete</a>
					</td>
					<td><input name=483 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Budget Performance YTD</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=507" 
					title="Edit Budget Performance YTD of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=507"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Budget Performance YTD of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Budget Performance YTD of: 2009-8-1">Delete</a>
					</td>
					<td><input name=507 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=574" 
					title="Edit Combined FTE of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=574"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-10-15">Delete</a>
					</td>
					<td><input name=574 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=343" 
					title="Edit Combined FTE of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=343"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-1-1">Delete</a>
					</td>
					<td><input name=343 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=364" 
					title="Edit Combined FTE of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=364"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-2-1">Delete</a>
					</td>
					<td><input name=364 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=365" 
					title="Edit Combined FTE of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=365"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-2-1">Delete</a>
					</td>
					<td><input name=365 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=388" 
					title="Edit Combined FTE of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=388"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-3-1">Delete</a>
					</td>
					<td><input name=388 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=412" 
					title="Edit Combined FTE of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=412"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-4-1">Delete</a>
					</td>
					<td><input name=412 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=436" 
					title="Edit Combined FTE of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=436"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-5-1">Delete</a>
					</td>
					<td><input name=436 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=460" 
					title="Edit Combined FTE of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=460"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-6-1">Delete</a>
					</td>
					<td><input name=460 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=484" 
					title="Edit Combined FTE of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=484"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-7-1">Delete</a>
					</td>
					<td><input name=484 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Combined FTE</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=508" 
					title="Edit Combined FTE of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=508"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Combined FTE of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Combined FTE of: 2009-8-1">Delete</a>
					</td>
					<td><input name=508 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Details</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=575" 
					title="Edit IFRS Details of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=575"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Details of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Details of: 2009-10-15">Delete</a>
					</td>
					<td><input name=575 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Details</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=344" 
					title="Edit IFRS Details of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=344"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Details of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Details of: 2009-1-1">Delete</a>
					</td>
					<td><input name=344 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Details</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=366" 
					title="Edit IFRS Details of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=366"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Details of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Details of: 2009-2-1">Delete</a>
					</td>
					<td><input name=366 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Details</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=389" 
					title="Edit IFRS Details of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=389"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Details of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Details of: 2009-3-1">Delete</a>
					</td>
					<td><input name=389 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Details</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=413" 
					title="Edit IFRS Details of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=413"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Details of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Details of: 2009-4-1">Delete</a>
					</td>
					<td><input name=413 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Details</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=437" 
					title="Edit IFRS Details of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=437"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Details of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Details of: 2009-5-1">Delete</a>
					</td>
					<td><input name=437 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Details</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=461" 
					title="Edit IFRS Details of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=461"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Details of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Details of: 2009-6-1">Delete</a>
					</td>
					<td><input name=461 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Details</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=485" 
					title="Edit IFRS Details of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=485"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Details of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Details of: 2009-7-1">Delete</a>
					</td>
					<td><input name=485 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Details</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=509" 
					title="Edit IFRS Details of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=509"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Details of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Details of: 2009-8-1">Delete</a>
					</td>
					<td><input name=509 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=576" 
					title="Edit IFRS Summary of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=576"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-10-15">Delete</a>
					</td>
					<td><input name=576 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=345" 
					title="Edit IFRS Summary of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=345"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-1-1">Delete</a>
					</td>
					<td><input name=345 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=367" 
					title="Edit IFRS Summary of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=367"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-2-1">Delete</a>
					</td>
					<td><input name=367 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=390" 
					title="Edit IFRS Summary of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=390"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-3-1">Delete</a>
					</td>
					<td><input name=390 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=391" 
					title="Edit IFRS Summary of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=391"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-3-1">Delete</a>
					</td>
					<td><input name=391 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=414" 
					title="Edit IFRS Summary of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=414"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-4-1">Delete</a>
					</td>
					<td><input name=414 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=438" 
					title="Edit IFRS Summary of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=438"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-5-1">Delete</a>
					</td>
					<td><input name=438 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=462" 
					title="Edit IFRS Summary of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=462"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-6-1">Delete</a>
					</td>
					<td><input name=462 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=486" 
					title="Edit IFRS Summary of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=486"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-7-1">Delete</a>
					</td>
					<td><input name=486 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>IFRS Summary</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=510" 
					title="Edit IFRS Summary of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=510"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE IFRS Summary of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete IFRS Summary of: 2009-8-1">Delete</a>
					</td>
					<td><input name=510 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Key Indicator Report</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=577" 
					title="Edit Key Indicator Report of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=577"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Key Indicator Report of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Key Indicator Report of: 2009-10-15">Delete</a>
					</td>
					<td><input name=577 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Key Indicator Report</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=346" 
					title="Edit Key Indicator Report of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=346"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Key Indicator Report of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Key Indicator Report of: 2009-1-1">Delete</a>
					</td>
					<td><input name=346 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Key Indicator Report</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=368" 
					title="Edit Key Indicator Report of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=368"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Key Indicator Report of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Key Indicator Report of: 2009-2-1">Delete</a>
					</td>
					<td><input name=368 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Key Indicator Report</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=392" 
					title="Edit Key Indicator Report of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=392"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Key Indicator Report of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Key Indicator Report of: 2009-3-1">Delete</a>
					</td>
					<td><input name=392 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Key Indicator Report</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=415" 
					title="Edit Key Indicator Report of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=415"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Key Indicator Report of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Key Indicator Report of: 2009-4-1">Delete</a>
					</td>
					<td><input name=415 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Key Indicator Report</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=439" 
					title="Edit Key Indicator Report of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=439"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Key Indicator Report of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Key Indicator Report of: 2009-5-1">Delete</a>
					</td>
					<td><input name=439 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Key Indicator Report</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=463" 
					title="Edit Key Indicator Report of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=463"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Key Indicator Report of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Key Indicator Report of: 2009-6-1">Delete</a>
					</td>
					<td><input name=463 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Key Indicator Report</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=487" 
					title="Edit Key Indicator Report of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=487"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Key Indicator Report of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Key Indicator Report of: 2009-7-1">Delete</a>
					</td>
					<td><input name=487 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Key Indicator Report</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=511" 
					title="Edit Key Indicator Report of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=511"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Key Indicator Report of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Key Indicator Report of: 2009-8-1">Delete</a>
					</td>
					<td><input name=511 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=512" 
					title="Edit MD FTE Monthly of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=512"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-8-1">Delete</a>
					</td>
					<td><input name=512 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=578" 
					title="Edit MD FTE Monthly of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=578"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-10-15">Delete</a>
					</td>
					<td><input name=578 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=347" 
					title="Edit MD FTE Monthly of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=347"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-1-1">Delete</a>
					</td>
					<td><input name=347 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=369" 
					title="Edit MD FTE Monthly of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=369"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-2-1">Delete</a>
					</td>
					<td><input name=369 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=393" 
					title="Edit MD FTE Monthly of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=393"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-3-1">Delete</a>
					</td>
					<td><input name=393 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=416" 
					title="Edit MD FTE Monthly of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=416"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-4-1">Delete</a>
					</td>
					<td><input name=416 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=417" 
					title="Edit MD FTE Monthly of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=417"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-4-1">Delete</a>
					</td>
					<td><input name=417 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=440" 
					title="Edit MD FTE Monthly of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=440"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-5-1">Delete</a>
					</td>
					<td><input name=440 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=464" 
					title="Edit MD FTE Monthly of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=464"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-6-1">Delete</a>
					</td>
					<td><input name=464 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE Monthly</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=488" 
					title="Edit MD FTE Monthly of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=488"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE Monthly of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE Monthly of: 2009-7-1">Delete</a>
					</td>
					<td><input name=488 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE YTD</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=513" 
					title="Edit MD FTE YTD of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=513"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE YTD of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE YTD of: 2009-8-1">Delete</a>
					</td>
					<td><input name=513 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE YTD</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=579" 
					title="Edit MD FTE YTD of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=579"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE YTD of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE YTD of: 2009-10-15">Delete</a>
					</td>
					<td><input name=579 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE YTD</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=370" 
					title="Edit MD FTE YTD of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=370"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE YTD of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE YTD of: 2009-2-1">Delete</a>
					</td>
					<td><input name=370 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE YTD</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=394" 
					title="Edit MD FTE YTD of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=394"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE YTD of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE YTD of: 2009-3-1">Delete</a>
					</td>
					<td><input name=394 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE YTD</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=418" 
					title="Edit MD FTE YTD of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=418"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE YTD of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE YTD of: 2009-4-1">Delete</a>
					</td>
					<td><input name=418 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE YTD</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=441" 
					title="Edit MD FTE YTD of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=441"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE YTD of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE YTD of: 2009-5-1">Delete</a>
					</td>
					<td><input name=441 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE YTD</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=465" 
					title="Edit MD FTE YTD of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=465"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE YTD of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE YTD of: 2009-6-1">Delete</a>
					</td>
					<td><input name=465 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>MD FTE YTD</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=489" 
					title="Edit MD FTE YTD of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=489"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE MD FTE YTD of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete MD FTE YTD of: 2009-7-1">Delete</a>
					</td>
					<td><input name=489 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=514" 
					title="Edit Membership Summary of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=514"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-8-1">Delete</a>
					</td>
					<td><input name=514 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=580" 
					title="Edit Membership Summary of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=580"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-10-15">Delete</a>
					</td>
					<td><input name=580 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=348" 
					title="Edit Membership Summary of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=348"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-1-1">Delete</a>
					</td>
					<td><input name=348 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=371" 
					title="Edit Membership Summary of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=371"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-2-1">Delete</a>
					</td>
					<td><input name=371 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=395" 
					title="Edit Membership Summary of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=395"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-3-1">Delete</a>
					</td>
					<td><input name=395 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=419" 
					title="Edit Membership Summary of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=419"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-4-1">Delete</a>
					</td>
					<td><input name=419 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=442" 
					title="Edit Membership Summary of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=442"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-5-1">Delete</a>
					</td>
					<td><input name=442 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=443" 
					title="Edit Membership Summary of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=443"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-5-1">Delete</a>
					</td>
					<td><input name=443 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=466" 
					title="Edit Membership Summary of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=466"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-6-1">Delete</a>
					</td>
					<td><input name=466 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Membership Summary</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=490" 
					title="Edit Membership Summary of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=490"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Membership Summary of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Membership Summary of: 2009-7-1">Delete</a>
					</td>
					<td><input name=490 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-9-1</td>
					<td>No</td>
					<td>18 (8/16/09 - 8/29/09)</td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=525" 
					title="Edit Missed Meals Breaks of: 2009-9-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=525"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-9-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-9-1">Delete</a>
					</td>
					<td><input name=525 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=581" 
					title="Edit Missed Meals Breaks of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=581"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-10-15">Delete</a>
					</td>
					<td><input name=581 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>October</td>
					<td>2009-11-06</td>
					<td>Yes</td>
					<td>22 (10/11/09 - 10/24/09)</td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=604" 
					title="Edit Missed Meals Breaks of: 2009-11-06">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=604"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-11-06\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-11-06">Delete</a>
					</td>
					<td><input name=604 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=349" 
					title="Edit Missed Meals Breaks of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=349"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-1-1">Delete</a>
					</td>
					<td><input name=349 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=372" 
					title="Edit Missed Meals Breaks of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=372"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-2-1">Delete</a>
					</td>
					<td><input name=372 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=396" 
					title="Edit Missed Meals Breaks of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=396"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-3-1">Delete</a>
					</td>
					<td><input name=396 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=420" 
					title="Edit Missed Meals Breaks of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=420"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-4-1">Delete</a>
					</td>
					<td><input name=420 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=444" 
					title="Edit Missed Meals Breaks of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=444"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-5-1">Delete</a>
					</td>
					<td><input name=444 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=467" 
					title="Edit Missed Meals Breaks of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=467"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-6-1">Delete</a>
					</td>
					<td><input name=467 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Missed Meals Breaks</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=491" 
					title="Edit Missed Meals Breaks of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=491"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Missed Meals Breaks of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Missed Meals Breaks of: 2009-7-1">Delete</a>
					</td>
					<td><input name=491 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=515" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=515"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-8-1">Delete</a>
					</td>
					<td><input name=515 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=582" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=582"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-10-15">Delete</a>
					</td>
					<td><input name=582 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=350" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=350"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-1-1">Delete</a>
					</td>
					<td><input name=350 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=373" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=373"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-2-1">Delete</a>
					</td>
					<td><input name=373 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=397" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=397"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-3-1">Delete</a>
					</td>
					<td><input name=397 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=421" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=421"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-4-1">Delete</a>
					</td>
					<td><input name=421 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=445" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=445"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-5-1">Delete</a>
					</td>
					<td><input name=445 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=468" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=468"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-6-1">Delete</a>
					</td>
					<td><input name=468 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=469" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=469"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-6-1">Delete</a>
					</td>
					<td><input name=469 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken Month</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=492" 
					title="Edit Non-MD Vacation Accrued vs Taken Month of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=492"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken Month of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken Month of: 2009-7-1">Delete</a>
					</td>
					<td><input name=492 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken YTD</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=516" 
					title="Edit Non-MD Vacation Accrued vs Taken YTD of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=516"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken YTD of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken YTD of: 2009-8-1">Delete</a>
					</td>
					<td><input name=516 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken YTD</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=583" 
					title="Edit Non-MD Vacation Accrued vs Taken YTD of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=583"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken YTD of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken YTD of: 2009-10-15">Delete</a>
					</td>
					<td><input name=583 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken YTD</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=374" 
					title="Edit Non-MD Vacation Accrued vs Taken YTD of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=374"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken YTD of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken YTD of: 2009-2-1">Delete</a>
					</td>
					<td><input name=374 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken YTD</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=398" 
					title="Edit Non-MD Vacation Accrued vs Taken YTD of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=398"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken YTD of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken YTD of: 2009-3-1">Delete</a>
					</td>
					<td><input name=398 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken YTD</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=422" 
					title="Edit Non-MD Vacation Accrued vs Taken YTD of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=422"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken YTD of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken YTD of: 2009-4-1">Delete</a>
					</td>
					<td><input name=422 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken YTD</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=446" 
					title="Edit Non-MD Vacation Accrued vs Taken YTD of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=446"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken YTD of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken YTD of: 2009-5-1">Delete</a>
					</td>
					<td><input name=446 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken YTD</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=470" 
					title="Edit Non-MD Vacation Accrued vs Taken YTD of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=470"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken YTD of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken YTD of: 2009-6-1">Delete</a>
					</td>
					<td><input name=470 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Non-MD Vacation Accrued vs Taken YTD</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=493" 
					title="Edit Non-MD Vacation Accrued vs Taken YTD of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=493"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Non-MD Vacation Accrued vs Taken YTD of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Non-MD Vacation Accrued vs Taken YTD of: 2009-7-1">Delete</a>
					</td>
					<td><input name=493 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-9-1</td>
					<td>No</td>
					<td>18 (8/16/09 - 8/29/09)</td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=526" 
					title="Edit OnCall Short-Hr Emp of: 2009-9-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=526"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-9-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-9-1">Delete</a>
					</td>
					<td><input name=526 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=584" 
					title="Edit OnCall Short-Hr Emp of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=584"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-10-15">Delete</a>
					</td>
					<td><input name=584 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>October</td>
					<td>2009-11-05</td>
					<td>Yes</td>
					<td>22 (10/11/09 - 10/24/09)</td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=599" 
					title="Edit OnCall Short-Hr Emp of: 2009-11-05">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=599"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-11-05\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-11-05">Delete</a>
					</td>
					<td><input name=599 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=351" 
					title="Edit OnCall Short-Hr Emp of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=351"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-1-1">Delete</a>
					</td>
					<td><input name=351 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=375" 
					title="Edit OnCall Short-Hr Emp of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=375"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-2-1">Delete</a>
					</td>
					<td><input name=375 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=399" 
					title="Edit OnCall Short-Hr Emp of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=399"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-3-1">Delete</a>
					</td>
					<td><input name=399 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=423" 
					title="Edit OnCall Short-Hr Emp of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=423"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-4-1">Delete</a>
					</td>
					<td><input name=423 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=447" 
					title="Edit OnCall Short-Hr Emp of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=447"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-5-1">Delete</a>
					</td>
					<td><input name=447 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=471" 
					title="Edit OnCall Short-Hr Emp of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=471"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-6-1">Delete</a>
					</td>
					<td><input name=471 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=494" 
					title="Edit OnCall Short-Hr Emp of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=494"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-7-1">Delete</a>
					</td>
					<td><input name=494 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>OnCall Short-Hr Emp</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=495" 
					title="Edit OnCall Short-Hr Emp of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=495"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE OnCall Short-Hr Emp of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete OnCall Short-Hr Emp of: 2009-7-1">Delete</a>
					</td>
					<td><input name=495 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Performance and Strategic Allocations</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=517" 
					title="Edit Performance and Strategic Allocations of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=517"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Performance and Strategic Allocations of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Performance and Strategic Allocations of: 2009-8-1">Delete</a>
					</td>
					<td><input name=517 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Performance and Strategic Allocations</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=585" 
					title="Edit Performance and Strategic Allocations of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=585"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Performance and Strategic Allocations of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Performance and Strategic Allocations of: 2009-10-15">Delete</a>
					</td>
					<td><input name=585 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Performance and Strategic Allocations</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=352" 
					title="Edit Performance and Strategic Allocations of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=352"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Performance and Strategic Allocations of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Performance and Strategic Allocations of: 2009-1-1">Delete</a>
					</td>
					<td><input name=352 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Performance and Strategic Allocations</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=376" 
					title="Edit Performance and Strategic Allocations of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=376"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Performance and Strategic Allocations of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Performance and Strategic Allocations of: 2009-2-1">Delete</a>
					</td>
					<td><input name=376 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Performance and Strategic Allocations</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=400" 
					title="Edit Performance and Strategic Allocations of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=400"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Performance and Strategic Allocations of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Performance and Strategic Allocations of: 2009-3-1">Delete</a>
					</td>
					<td><input name=400 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Performance and Strategic Allocations</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=424" 
					title="Edit Performance and Strategic Allocations of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=424"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Performance and Strategic Allocations of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Performance and Strategic Allocations of: 2009-4-1">Delete</a>
					</td>
					<td><input name=424 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Performance and Strategic Allocations</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=448" 
					title="Edit Performance and Strategic Allocations of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=448"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Performance and Strategic Allocations of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Performance and Strategic Allocations of: 2009-5-1">Delete</a>
					</td>
					<td><input name=448 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Performance and Strategic Allocations</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=472" 
					title="Edit Performance and Strategic Allocations of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=472"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Performance and Strategic Allocations of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Performance and Strategic Allocations of: 2009-6-1">Delete</a>
					</td>
					<td><input name=472 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Performance and Strategic Allocations</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=496" 
					title="Edit Performance and Strategic Allocations of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=496"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Performance and Strategic Allocations of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Performance and Strategic Allocations of: 2009-7-1">Delete</a>
					</td>
					<td><input name=496 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Pool</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=518" 
					title="Edit Pool of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=518"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Pool of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Pool of: 2009-8-1">Delete</a>
					</td>
					<td><input name=518 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Pool</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=586" 
					title="Edit Pool of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=586"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Pool of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Pool of: 2009-10-15">Delete</a>
					</td>
					<td><input name=586 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Pool</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=353" 
					title="Edit Pool of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=353"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Pool of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Pool of: 2009-1-1">Delete</a>
					</td>
					<td><input name=353 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Pool</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=377" 
					title="Edit Pool of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=377"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Pool of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Pool of: 2009-2-1">Delete</a>
					</td>
					<td><input name=377 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Pool</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=401" 
					title="Edit Pool of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=401"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Pool of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Pool of: 2009-3-1">Delete</a>
					</td>
					<td><input name=401 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Pool</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=425" 
					title="Edit Pool of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=425"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Pool of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Pool of: 2009-4-1">Delete</a>
					</td>
					<td><input name=425 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Pool</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=449" 
					title="Edit Pool of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=449"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Pool of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Pool of: 2009-5-1">Delete</a>
					</td>
					<td><input name=449 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Pool</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=473" 
					title="Edit Pool of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=473"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Pool of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Pool of: 2009-6-1">Delete</a>
					</td>
					<td><input name=473 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Pool</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=497" 
					title="Edit Pool of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=497"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Pool of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Pool of: 2009-7-1">Delete</a>
					</td>
					<td><input name=497 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Recharge</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=519" 
					title="Edit Recharge of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=519"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Recharge of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Recharge of: 2009-8-1">Delete</a>
					</td>
					<td><input name=519 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Recharge</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=587" 
					title="Edit Recharge of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=587"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Recharge of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Recharge of: 2009-10-15">Delete</a>
					</td>
					<td><input name=587 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Recharge</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=354" 
					title="Edit Recharge of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=354"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Recharge of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Recharge of: 2009-1-1">Delete</a>
					</td>
					<td><input name=354 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Recharge</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=378" 
					title="Edit Recharge of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=378"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Recharge of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Recharge of: 2009-2-1">Delete</a>
					</td>
					<td><input name=378 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Recharge</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=402" 
					title="Edit Recharge of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=402"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Recharge of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Recharge of: 2009-3-1">Delete</a>
					</td>
					<td><input name=402 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Recharge</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=426" 
					title="Edit Recharge of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=426"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Recharge of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Recharge of: 2009-4-1">Delete</a>
					</td>
					<td><input name=426 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Recharge</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=450" 
					title="Edit Recharge of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=450"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Recharge of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Recharge of: 2009-5-1">Delete</a>
					</td>
					<td><input name=450 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Recharge</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=474" 
					title="Edit Recharge of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=474"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Recharge of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Recharge of: 2009-6-1">Delete</a>
					</td>
					<td><input name=474 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Recharge</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=498" 
					title="Edit Recharge of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=498"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Recharge of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Recharge of: 2009-7-1">Delete</a>
					</td>
					<td><input name=498 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>SPOP</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=521" 
					title="Edit SPOP of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=521"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE SPOP of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete SPOP of: 2009-8-1">Delete</a>
					</td>
					<td><input name=521 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>SPOP</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=588" 
					title="Edit SPOP of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=588"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE SPOP of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete SPOP of: 2009-10-15">Delete</a>
					</td>
					<td><input name=588 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>SPOP</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=355" 
					title="Edit SPOP of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=355"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE SPOP of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete SPOP of: 2009-1-1">Delete</a>
					</td>
					<td><input name=355 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>SPOP</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=379" 
					title="Edit SPOP of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=379"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE SPOP of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete SPOP of: 2009-2-1">Delete</a>
					</td>
					<td><input name=379 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>SPOP</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=403" 
					title="Edit SPOP of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=403"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE SPOP of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete SPOP of: 2009-3-1">Delete</a>
					</td>
					<td><input name=403 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>SPOP</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=427" 
					title="Edit SPOP of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=427"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE SPOP of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete SPOP of: 2009-4-1">Delete</a>
					</td>
					<td><input name=427 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>SPOP</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=451" 
					title="Edit SPOP of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=451"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE SPOP of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete SPOP of: 2009-5-1">Delete</a>
					</td>
					<td><input name=451 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>SPOP</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=475" 
					title="Edit SPOP of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=475"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE SPOP of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete SPOP of: 2009-6-1">Delete</a>
					</td>
					<td><input name=475 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>SPOP</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=499" 
					title="Edit SPOP of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=499"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE SPOP of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete SPOP of: 2009-7-1">Delete</a>
					</td>
					<td><input name=499 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>TIMS Accrual</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=522" 
					title="Edit TIMS Accrual of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=522"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE TIMS Accrual of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete TIMS Accrual of: 2009-8-1">Delete</a>
					</td>
					<td><input name=522 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>TIMS Accrual</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=589" 
					title="Edit TIMS Accrual of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=589"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE TIMS Accrual of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete TIMS Accrual of: 2009-10-15">Delete</a>
					</td>
					<td><input name=589 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>TIMS Accrual</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=356" 
					title="Edit TIMS Accrual of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=356"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE TIMS Accrual of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete TIMS Accrual of: 2009-1-1">Delete</a>
					</td>
					<td><input name=356 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>TIMS Accrual</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=380" 
					title="Edit TIMS Accrual of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=380"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE TIMS Accrual of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete TIMS Accrual of: 2009-2-1">Delete</a>
					</td>
					<td><input name=380 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>TIMS Accrual</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=404" 
					title="Edit TIMS Accrual of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=404"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE TIMS Accrual of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete TIMS Accrual of: 2009-3-1">Delete</a>
					</td>
					<td><input name=404 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>TIMS Accrual</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=428" 
					title="Edit TIMS Accrual of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=428"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE TIMS Accrual of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete TIMS Accrual of: 2009-4-1">Delete</a>
					</td>
					<td><input name=428 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>TIMS Accrual</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=452" 
					title="Edit TIMS Accrual of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=452"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE TIMS Accrual of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete TIMS Accrual of: 2009-5-1">Delete</a>
					</td>
					<td><input name=452 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>TIMS Accrual</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=476" 
					title="Edit TIMS Accrual of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=476"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE TIMS Accrual of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete TIMS Accrual of: 2009-6-1">Delete</a>
					</td>
					<td><input name=476 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>TIMS Accrual</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=500" 
					title="Edit TIMS Accrual of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=500"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE TIMS Accrual of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete TIMS Accrual of: 2009-7-1">Delete</a>
					</td>
					<td><input name=500 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Vacation ATO - Physician</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=523" 
					title="Edit Vacation ATO - Physician of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=523"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Vacation ATO - Physician of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Vacation ATO - Physician of: 2009-8-1">Delete</a>
					</td>
					<td><input name=523 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Vacation ATO - Physician</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=590" 
					title="Edit Vacation ATO - Physician of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=590"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Vacation ATO - Physician of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Vacation ATO - Physician of: 2009-10-15">Delete</a>
					</td>
					<td><input name=590 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Vacation ATO - Physician</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=357" 
					title="Edit Vacation ATO - Physician of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=357"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Vacation ATO - Physician of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Vacation ATO - Physician of: 2009-1-1">Delete</a>
					</td>
					<td><input name=357 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Vacation ATO - Physician</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=381" 
					title="Edit Vacation ATO - Physician of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=381"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Vacation ATO - Physician of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Vacation ATO - Physician of: 2009-2-1">Delete</a>
					</td>
					<td><input name=381 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Vacation ATO - Physician</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=405" 
					title="Edit Vacation ATO - Physician of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=405"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Vacation ATO - Physician of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Vacation ATO - Physician of: 2009-3-1">Delete</a>
					</td>
					<td><input name=405 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Vacation ATO - Physician</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=429" 
					title="Edit Vacation ATO - Physician of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=429"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Vacation ATO - Physician of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Vacation ATO - Physician of: 2009-4-1">Delete</a>
					</td>
					<td><input name=429 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Vacation ATO - Physician</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=453" 
					title="Edit Vacation ATO - Physician of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=453"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Vacation ATO - Physician of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Vacation ATO - Physician of: 2009-5-1">Delete</a>
					</td>
					<td><input name=453 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Vacation ATO - Physician</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=477" 
					title="Edit Vacation ATO - Physician of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=477"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Vacation ATO - Physician of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Vacation ATO - Physician of: 2009-6-1">Delete</a>
					</td>
					<td><input name=477 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Vacation ATO - Physician</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=501" 
					title="Edit Vacation ATO - Physician of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=501"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Vacation ATO - Physician of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Vacation ATO - Physician of: 2009-7-1">Delete</a>
					</td>
					<td><input name=501 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Visits</td>
					<td>2009</td>
					<td>August</td>
					<td>2009-8-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=524" 
					title="Edit Visits of: 2009-8-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=524"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Visits of: 2009-8-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Visits of: 2009-8-1">Delete</a>
					</td>
					<td><input name=524 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Visits</td>
					<td>2009</td>
					<td>September</td>
					<td>2009-10-15</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=591" 
					title="Edit Visits of: 2009-10-15">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=591"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Visits of: 2009-10-15\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Visits of: 2009-10-15">Delete</a>
					</td>
					<td><input name=591 type='checkbox' value='1' Checked = true></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Visits</td>
					<td>2009</td>
					<td>January</td>
					<td>2009-1-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=358" 
					title="Edit Visits of: 2009-1-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=358"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Visits of: 2009-1-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Visits of: 2009-1-1">Delete</a>
					</td>
					<td><input name=358 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Visits</td>
					<td>2009</td>
					<td>February</td>
					<td>2009-2-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=382" 
					title="Edit Visits of: 2009-2-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=382"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Visits of: 2009-2-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Visits of: 2009-2-1">Delete</a>
					</td>
					<td><input name=382 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Visits</td>
					<td>2009</td>
					<td>March</td>
					<td>2009-3-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=406" 
					title="Edit Visits of: 2009-3-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=406"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Visits of: 2009-3-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Visits of: 2009-3-1">Delete</a>
					</td>
					<td><input name=406 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Visits</td>
					<td>2009</td>
					<td>April</td>
					<td>2009-4-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=430" 
					title="Edit Visits of: 2009-4-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=430"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Visits of: 2009-4-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Visits of: 2009-4-1">Delete</a>
					</td>
					<td><input name=430 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Visits</td>
					<td>2009</td>
					<td>May</td>
					<td>2009-5-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=454" 
					title="Edit Visits of: 2009-5-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=454"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Visits of: 2009-5-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Visits of: 2009-5-1">Delete</a>
					</td>
					<td><input name=454 type='checkbox' value='0'></td>
					</tr>
					<tr class="row1" style="padding-top:4px; padding-bottom:4px;">
					<td>Visits</td>
					<td>2009</td>
					<td>June</td>
					<td>2009-6-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=478" 
					title="Edit Visits of: 2009-6-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=478"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Visits of: 2009-6-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Visits of: 2009-6-1">Delete</a>
					</td>
					<td><input name=478 type='checkbox' value='0'></td>
					</tr>
					<tr class="row2" style="padding-top:4px; padding-bottom:4px;">
					<td>Visits</td>
					<td>2009</td>
					<td>July</td>
					<td>2009-7-1</td>
					<td>No</td>
					<td></td>
					<td>
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=edit&id=502" 
					title="Edit Visits of: 2009-7-1">Edit</a> - 
					<a href="http://diablo.ca.kp.org/dept/controller/edit_report.php?cmd=delete&id=502"
					 
					onclick="return confirm(&quot;Are you sure you would like to\nDELETE Visits of: 2009-7-1\n\nPlease click 'OK' to delete or 'CANCEL' to go back.&quot;)" 
					title="Delete Visits of: 2009-7-1">Delete</a>
					</td>
					<td><input name=502 type='checkbox' value='0'></td>
					</tr></tbody><tr><td colspan="8" align="right">
					<input name="submit" type="submit" value="go" style="margin-right:5px;" />
					</td></tr></table></form>

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
711:
712:
713:
714:
715:
716:
717:
718:
719:
720:
721:
722:
723:
724:
725:
726:
727:
728:
729:
730:
731:
732:
733:
734:
735:
736:
737:
738:
739:
740:
741:
742:
743:
744:
745:
746:
747:
748:
749:
750:
751:
752:
753:
754:
755:
756:
757:
758:
759:
760:
761:
762:
763:
764:
765:
766:
767:
768:
769:
770:
771:
772:
773:
774:
775:
776:
777:
778:
779:
780:
781:
782:
783:
784:
785:
786:
787:
788:
789:
790:
791:
792:
793:
794:
795:
796:
797:
798:
799:
800:
801:
802:
803:
804:
805:
806:
807:
808:
809:
810:
811:
812:
813:
814:
815:
816:
817:
818:
819:
820:
821:
822:
823:
824:
825:
826:
827:
828:
829:
830:
831:
832:
833:
834:
835:
836:
837:
838:
839:
840:
841:
842:
843:
844:
845:
846:
847:
848:
849:
850:
851:
852:
853:
854:
855:
856:
857:
858:
859:
860:
861:
862:
863:
864:
865:
866:
867:
868:
869:
870:
871:
872:
873:
874:
875:
876:
877:
878:
879:
880:
881:
882:
883:
884:
885:
886:
887:
888:
889:
890:
891:
892:
893:
894:
895:
896:
897:
898:
899:
900:
901:
902:
903:
904:
905:
906:
907:
908:
909:
910:
911:
912:
913:
914:
915:
916:
917:
918:
919:
920:
921:
922:
923:
924:
925:
926:
927:
928:
929:
930:
931:
932:
933:
934:
935:
936:
937:
938:
939:
940:
941:
942:
943:
944:
945:
946:
947:
948:
949:
950:
951:
952:
953:
954:
955:
956:
957:
958:
959:
960:
961:
962:
963:
964:
965:
966:
967:
968:
969:
970:
971:
972:
973:
974:
975:
976:
977:
978:
979:
980:
981:
982:
983:
984:
985:
986:
987:
988:
989:
990:
991:
992:
993:
994:
995:
996:
997:
998:
999:
1000:
1001:
1002:
1003:
1004:
1005:
1006:
1007:
1008:
1009:
1010:
1011:
1012:
1013:
1014:
1015:
1016:
1017:
1018:
1019:
1020:
1021:
1022:
1023:
1024:
1025:
1026:
1027:
1028:
1029:
1030:
1031:
1032:
1033:
1034:
1035:
1036:
1037:
1038:
1039:
1040:
1041:
1042:
1043:
1044:
1045:
1046:
1047:
1048:
1049:
1050:
1051:
1052:
1053:
1054:
1055:
1056:
1057:
1058:
1059:
1060:
1061:
1062:
1063:
1064:
1065:
1066:
1067:
1068:
1069:
1070:
1071:
1072:
1073:
1074:
1075:
1076:
1077:
1078:
1079:
1080:
1081:
1082:
1083:
1084:
1085:
1086:
1087:
1088:
1089:
1090:
1091:
1092:
1093:
1094:
1095:
1096:
1097:
1098:
1099:
1100:
1101:
1102:
1103:
1104:
1105:
1106:
1107:
1108:
1109:
1110:
1111:
1112:
1113:
1114:
1115:
1116:
1117:
1118:
1119:
1120:
1121:
1122:
1123:
1124:
1125:
1126:
1127:
1128:
1129:
1130:
1131:
1132:
1133:
1134:
1135:
1136:
1137:
1138:
1139:
1140:
1141:
1142:
1143:
1144:
1145:
1146:
1147:
1148:
1149:
1150:
1151:
1152:
1153:
1154:
1155:
1156:
1157:
1158:
1159:
1160:
1161:
1162:
1163:
1164:
1165:
1166:
1167:
1168:
1169:
1170:
1171:
1172:
1173:
1174:
1175:
1176:
1177:
1178:
1179:
1180:
1181:
1182:
1183:
1184:
1185:
1186:
1187:
1188:
1189:
1190:
1191:
1192:
1193:
1194:
1195:
1196:
1197:
1198:
1199:
1200:
1201:
1202:
1203:
1204:
1205:
1206:
1207:
1208:
1209:
1210:
1211:
1212:
1213:
1214:
1215:
1216:
1217:
1218:
1219:
1220:
1221:
1222:
1223:
1224:
1225:
1226:
1227:
1228:
1229:
1230:
1231:
1232:
1233:
1234:
1235:
1236:
1237:
1238:
1239:
1240:
1241:
1242:
1243:
1244:
1245:
1246:
1247:
1248:
1249:
1250:
1251:
1252:
1253:
1254:
1255:
1256:
1257:
1258:
1259:
1260:
1261:
1262:
1263:
1264:
1265:
1266:
1267:
1268:
1269:
1270:
1271:
1272:
1273:
1274:
1275:
1276:
1277:
1278:
1279:
1280:
1281:
1282:
1283:
1284:
1285:
1286:
1287:
1288:
1289:
1290:
1291:
1292:
1293:
1294:
1295:
1296:
1297:
1298:
1299:
1300:
1301:
1302:
1303:
1304:
1305:
1306:
1307:
1308:
1309:
1310:
1311:
1312:
1313:
1314:
1315:
1316:
1317:
1318:
1319:
1320:
1321:
1322:
1323:
1324:
1325:
1326:
1327:
1328:
1329:
1330:
1331:
1332:
1333:
1334:
1335:
1336:
1337:
1338:
1339:
1340:
1341:
1342:
1343:
1344:
1345:
1346:
1347:
1348:
1349:
1350:
1351:
1352:
1353:
1354:
1355:
1356:
1357:
1358:
1359:
1360:
1361:
1362:
1363:
1364:
1365:
1366:
1367:
1368:
1369:
1370:
1371:
1372:
1373:
1374:
1375:
1376:
1377:
1378:
1379:
1380:
1381:
1382:
1383:
1384:
1385:
1386:
1387:
1388:
1389:
1390:
1391:
1392:
1393:
1394:
1395:
1396:
1397:
1398:
1399:
1400:
1401:
1402:
1403:
1404:
1405:
1406:
1407:
1408:
1409:
1410:
1411:
1412:
1413:
1414:
1415:
1416:
1417:
1418:
1419:
1420:
1421:
1422:
1423:
1424:
1425:
1426:
1427:
1428:
1429:
1430:
1431:
1432:
1433:
1434:
1435:
1436:
1437:
1438:
1439:
1440:
1441:
1442:
1443:
1444:
1445:
1446:
1447:
1448:
1449:
1450:
1451:
1452:
1453:
1454:
1455:
1456:
1457:
1458:
1459:
1460:
1461:
1462:
1463:
1464:
1465:
1466:
1467:
1468:
1469:
1470:
1471:
1472:
1473:
1474:
1475:
1476:
1477:
1478:
1479:
1480:
1481:
1482:
1483:
1484:
1485:
1486:
1487:
1488:
1489:
1490:
1491:
1492:
1493:
1494:
1495:
1496:
1497:
1498:
1499:
1500:
1501:
1502:
1503:
1504:
1505:
1506:
1507:
1508:
1509:
1510:
1511:
1512:
1513:
1514:
1515:
1516:
1517:
1518:
1519:
1520:
1521:
1522:
1523:
1524:
1525:
1526:
1527:
1528:
1529:
1530:
1531:
1532:
1533:
1534:
1535:
1536:
1537:
1538:
1539:
1540:
1541:
1542:
1543:
1544:
1545:
1546:
1547:
1548:
1549:
1550:
1551:
1552:
1553:
1554:
1555:
1556:
1557:
1558:
1559:
1560:
1561:
1562:
1563:
1564:
1565:
1566:
1567:
1568:
1569:
1570:
1571:
1572:
1573:
1574:
1575:
1576:
1577:
1578:
1579:
1580:
1581:
1582:
1583:
1584:
1585:
1586:
1587:
1588:
1589:
1590:
1591:
1592:
1593:
1594:
1595:
1596:
1597:
1598:
1599:
1600:
1601:
1602:
1603:
1604:
1605:
1606:
1607:
1608:
1609:
1610:
1611:
1612:
1613:
1614:
1615:
1616:
1617:
1618:
1619:
1620:
1621:
1622:
1623:
1624:
1625:
1626:
1627:
1628:
1629:
1630:
1631:
1632:
1633:
1634:
1635:
1636:
1637:
1638:
1639:
1640:
1641:
1642:
1643:
1644:
1645:
1646:
1647:
1648:
1649:
1650:
1651:
1652:
1653:
1654:
1655:
1656:
1657:
1658:
1659:
1660:
1661:
1662:
1663:
1664:
1665:
1666:
1667:
1668:
1669:
1670:
1671:
1672:
1673:
1674:
1675:
1676:
1677:
1678:
1679:
1680:
1681:
1682:
1683:
1684:
1685:
1686:
1687:
1688:
1689:
1690:
1691:
1692:
1693:
1694:
1695:
1696:
1697:
1698:
1699:
1700:
1701:
1702:
1703:
1704:
1705:
1706:
1707:
1708:
1709:
1710:
1711:
1712:
1713:
1714:
1715:
1716:
1717:
1718:
1719:
1720:
1721:
1722:
1723:
1724:
1725:
1726:
1727:
1728:
1729:
1730:
1731:
1732:
1733:
1734:
1735:
1736:
1737:
1738:
1739:
1740:
1741:
1742:
1743:
1744:
1745:
1746:
1747:
1748:
1749:
1750:
1751:
1752:
1753:
1754:
1755:
1756:
1757:
1758:
1759:
1760:
1761:
1762:
1763:
1764:
1765:
1766:
1767:
1768:
1769:
1770:
1771:
1772:
1773:
1774:
1775:
1776:
1777:
1778:
1779:
1780:
1781:
1782:
1783:
1784:
1785:
1786:
1787:
1788:
1789:
1790:
1791:
1792:
1793:
1794:
1795:
1796:
1797:
1798:
1799:
1800:
1801:
1802:
1803:
1804:
1805:
1806:
1807:
1808:
1809:
1810:
1811:
1812:
1813:
1814:
1815:
1816:
1817:
1818:
1819:
1820:
1821:
1822:
1823:
1824:
1825:
1826:
1827:
1828:
1829:
1830:
1831:
1832:
1833:
1834:
1835:
1836:
1837:
1838:
1839:
1840:
1841:
1842:
1843:
1844:
1845:
1846:
1847:
1848:
1849:
1850:
1851:
1852:
1853:
1854:
1855:
1856:
1857:
1858:
1859:
1860:
1861:
1862:
1863:
1864:
1865:
1866:
1867:
1868:
1869:
1870:
1871:
1872:
1873:
1874:
1875:
1876:
1877:
1878:
1879:
1880:
1881:
1882:
1883:
1884:
1885:
1886:
1887:
1888:
1889:
1890:
1891:
1892:
1893:
1894:
1895:
1896:
1897:
1898:
1899:
1900:
1901:
1902:
1903:
1904:
1905:
1906:
1907:
1908:
1909:
1910:
1911:
1912:
1913:
1914:
1915:
1916:
1917:
1918:
1919:
1920:
1921:
1922:
1923:
1924:
1925:
1926:
1927:
1928:
1929:
1930:
1931:
1932:
1933:
1934:
1935:
1936:
1937:
1938:
1939:
1940:
1941:
1942:
1943:
1944:
1945:
1946:
1947:
1948:
1949:
1950:
1951:
1952:
1953:
1954:
1955:
1956:
1957:
1958:
1959:
1960:
1961:
1962:
1963:
1964:
1965:
1966:
1967:
1968:
1969:
1970:
1971:
1972:
1973:
1974:
1975:
1976:
1977:
1978:
1979:
1980:
1981:
1982:
1983:
1984:
1985:
1986:
1987:
1988:
1989:
1990:
1991:
1992:
1993:
1994:
1995:
1996:
1997:
1998:
1999:
2000:
2001:
2002:
2003:
2004:
2005:
2006:
2007:
2008:
2009:
2010:
2011:
2012:
2013:
2014:
2015:
2016:
2017:
2018:
2019:
2020:
2021:
2022:
2023:
2024:
2025:
2026:
2027:
2028:
2029:
2030:
2031:
2032:
2033:
2034:
2035:
2036:
2037:
2038:
2039:
2040:
2041:
2042:
2043:
2044:
2045:
2046:
2047:
2048:
2049:
2050:
2051:
2052:
2053:
2054:
2055:
2056:
2057:
2058:
2059:
2060:
2061:
2062:
2063:
2064:
2065:
2066:
2067:
2068:
2069:
2070:
2071:
2072:
2073:
2074:
2075:
2076:
2077:
2078:
2079:
2080:
2081:
2082:
2083:
2084:
2085:
2086:
2087:
2088:
2089:
2090:
2091:
2092:
2093:
2094:
2095:
2096:
2097:
2098:
2099:
2100:
2101:
2102:
2103:
2104:
2105:
2106:
2107:
2108:
2109:
2110:
2111:
2112:
2113:
2114:
2115:
2116:
2117:
2118:
2119:
2120:
2121:
2122:
2123:
2124:
2125:
2126:
2127:
2128:
2129:
2130:
2131:
2132:
2133:
2134:
2135:
2136:
2137:
2138:
2139:
2140:
2141:
2142:
2143:
2144:
2145:
2146:
2147:
2148:
2149:
2150:
2151:
2152:
2153:
2154:
2155:
2156:
2157:
2158:
2159:
2160:
2161:
2162:
2163:
2164:
2165:
2166:
2167:
2168:
2169:
2170:
2171:
2172:
2173:
2174:
2175:
2176:
2177:
2178:
2179:
2180:
2181:
2182:
2183:
2184:
2185:
2186:
2187:
2188:
2189:
2190:
2191:
2192:
2193:
2194:
2195:
2196:
2197:
2198:
2199:
2200:
2201:
2202:
2203:
2204:
2205:
2206:
2207:
2208:
2209:
2210:
2211:
2212:
2213:
2214:
2215:
2216:
2217:
2218:
2219:
2220:
2221:
2222:
2223:
2224:
2225:
2226:
2227:
2228:
2229:
2230:
2231:
2232:
2233:
2234:
2235:
2236:
2237:
2238:
2239:
2240:
2241:
2242:
2243:
2244:
2245:
2246:
2247:
2248:
2249:
2250:
2251:
2252:
2253:
2254:
2255:
2256:
2257:
2258:
2259:
2260:
2261:
2262:
2263:
2264:
2265:
2266:
2267:
2268:
2269:
2270:
2271:
2272:
2273:
2274:
2275:
2276:
2277:
2278:
2279:
2280:
2281:
2282:
2283:
2284:
2285:
2286:
2287:
2288:
2289:
2290:
2291:
2292:
2293:
2294:
2295:
2296:
2297:
2298:
2299:
2300:
2301:
2302:
2303:
2304:
2305:
2306:
2307:
2308:
2309:
2310:
2311:
2312:
2313:
2314:
2315:
2316:
2317:
2318:
2319:
2320:
2321:
2322:
2323:
2324:
2325:
2326:
2327:
2328:
2329:
2330:
2331:
2332:
2333:
2334:
2335:
2336:
2337:
2338:
2339:
2340:
2341:
2342:
2343:
2344:
2345:
2346:
2347:
2348:
2349:
2350:
2351:
2352:
2353:
2354:
2355:
2356:
2357:
2358:
2359:
2360:
2361:
2362:
2363:
2364:
2365:
2366:
2367:
2368:
2369:
2370:
2371:
2372:
2373:
2374:
2375:
2376:
2377:
2378:
2379:
2380:
2381:
2382:
2383:
2384:
2385:
2386:
2387:
2388:
2389:
2390:
2391:
2392:
2393:
2394:
2395:
2396:
2397:
2398:
2399:
2400:
2401:
2402:
2403:
2404:
2405:
2406:
2407:
2408:
2409:
2410:
2411:
2412:
2413:
2414:
2415:
2416:
2417:
2418:
2419:
2420:
2421:
2422:
2423:
2424:
2425:
2426:
2427:
2428:
2429:
2430:
2431:
2432:
2433:
2434:
2435:
2436:
2437:
2438:
2439:
2440:
2441:
2442:
2443:
2444:
2445:
2446:
2447:
2448:
2449:
2450:
2451:
2452:
2453:
2454:
2455:
2456:
2457:
2458:
2459:
2460:
2461:
2462:
2463:
2464:
2465:
2466:
2467:
2468:
2469:
2470:
2471:
2472:
2473:
2474:
2475:
2476:
2477:
2478:
2479:
2480:
2481:
2482:
2483:
2484:
2485:
2486:
2487:
2488:
2489:
2490:
2491:
2492:
2493:
2494:
2495:
2496:
2497:
2498:
2499:
2500:
2501:
2502:
2503:
2504:
2505:
2506:
2507:
2508:
2509:
2510:
2511:
2512:
2513:
2514:
2515:
2516:
2517:
2518:
2519:
2520:
2521:
2522:
2523:
2524:
2525:
2526:
2527:
2528:
2529:
2530:
2531:
2532:
2533:
2534:
2535:
2536:
2537:
2538:
2539:
2540:
2541:
2542:
2543:
2544:
2545:
2546:
2547:
2548:
2549:
2550:
2551:
2552:
2553:
2554:
2555:
2556:
2557:
2558:
2559:
2560:
2561:
2562:
2563:
2564:
2565:
2566:
2567:
2568:
2569:
2570:
2571:
2572:
2573:
2574:
2575:
2576:
2577:
2578:
2579:
2580:
2581:
2582:
2583:
2584:
2585:
2586:
2587:
2588:
2589:
2590:
2591:
2592:
2593:
2594:
2595:
2596:
2597:
2598:
2599:
2600:
2601:
2602:
2603:
2604:
2605:
2606:
2607:
2608:
2609:
2610:
2611:
2612:
2613:
2614:
2615:
2616:
2617:
2618:
2619:
2620:
2621:
2622:
2623:
2624:
2625:
2626:
2627:
2628:
2629:
2630:
2631:
2632:
2633:
2634:
2635:
2636:
2637:
2638:
2639:
2640:
2641:
2642:
2643:
2644:
2645:
2646:
2647:
2648:
2649:
2650:
2651:
2652:
2653:
2654:
2655:
2656:
2657:
2658:
2659:
2660:
2661:
2662:
2663:
2664:
2665:
2666:
2667:
2668:
2669:
2670:
2671:
2672:
2673:
2674:
2675:
2676:
2677:
2678:
2679:
2680:
2681:
2682:
2683:
2684:
2685:
2686:
2687:
2688:
2689:
2690:
2691:
2692:
2693:
2694:
2695:
2696:
2697:
2698:
2699:
2700:
2701:
2702:
2703:
2704:
2705:
2706:
2707:
2708:
2709:
2710:
2711:
2712:
2713:
2714:
2715:
2716:
2717:
2718:
2719:
2720:
2721:
2722:
2723:
2724:
2725:
2726:
2727:
2728:
2729:
2730:
2731:
2732:
2733:
2734:
2735:
2736:
2737:
2738:
2739:
2740:
2741:
2742:
2743:
2744:
2745:
2746:
2747:
2748:
2749:
2750:
2751:
2752:
2753:
2754:
2755:
2756:
2757:
2758:
2759:
2760:
2761:
2762:
2763:
2764:
2765:
2766:
2767:
2768:
2769:
2770:
2771:
2772:
2773:
2774:
2775:
2776:
2777:
2778:
2779:
2780:
2781:
2782:
2783:
2784:
2785:
2786:
2787:
2788:
2789:
2790:
2791:
2792:
2793:
2794:
2795:
2796:
2797:
2798:
2799:
2800:
2801:
2802:
2803:
2804:
2805:
2806:
2807:
2808:
2809:
2810:
2811:
2812:
2813:
2814:
2815:
2816:
2817:
2818:
2819:
2820:
2821:
2822:
2823:
2824:
2825:
2826:
2827:
2828:
2829:
2830:
2831:
2832:
2833:
2834:
2835:
2836:
2837:
2838:
2839:
2840:
2841:
2842:
2843:
2844:
2845:
2846:
2847:
2848:
2849:
2850:
2851:
2852:
2853:
2854:
2855:
2856:
2857:
2858:
2859:
2860:
2861:
2862:
2863:
2864:
2865:
2866:
2867:
2868:
2869:
2870:
2871:
2872:
2873:
2874:
2875:
2876:
2877:
2878:
2879:
2880:
2881:
2882:
2883:
2884:
2885:
2886:
2887:
2888:
2889:
2890:
2891:
2892:
2893:
2894:
2895:
2896:
2897:
2898:
2899:
2900:
2901:
2902:
2903:
2904:
2905:
2906:
2907:
2908:
2909:
2910:
2911:
2912:
2913:
2914:
2915:
2916:
2917:
2918:
2919:
2920:
2921:
2922:
2923:
2924:
2925:
2926:
2927:
2928:
2929:
2930:
2931:
2932:
2933:
2934:
2935:
2936:
2937:
2938:
2939:
2940:
2941:
2942:
2943:
2944:
2945:
2946:
2947:
2948:
2949:
2950:
2951:
2952:
2953:
2954:
2955:
2956:
2957:
2958:
2959:
2960:
2961:
2962:
2963:
2964:
2965:
2966:
2967:
2968:
2969:
2970:
2971:
2972:
2973:
2974:
2975:
2976:
2977:
2978:
2979:
2980:
2981:
2982:
2983:
2984:
2985:
2986:
2987:
2988:
2989:
2990:
2991:
2992:
2993:
2994:
2995:
2996:
2997:
2998:
2999:
3000:
3001:
3002:
3003:
3004:
3005:
3006:
3007:
3008:
3009:
3010:
3011:
3012:
3013:
3014:
3015:
3016:
3017:
3018:
3019:
3020:
3021:
3022:
3023:
3024:
3025:
3026:
3027:
3028:
3029:
3030:
3031:
3032:
3033:
3034:
3035:
3036:
3037:
3038:
3039:
3040:
3041:
3042:
3043:
3044:
3045:
3046:
3047:
3048:
3049:
3050:
3051:
3052:
3053:
3054:
3055:
3056:
3057:
3058:
3059:
3060:
3061:
3062:
3063:
3064:
3065:
3066:
3067:
3068:
3069:
3070:
3071:
3072:
3073:
3074:
3075:
3076:
3077:
3078:
3079:
3080:
3081:
3082:
3083:
3084:
3085:
3086:
3087:
3088:
3089:
3090:
3091:
3092:
3093:
3094:
3095:
3096:
3097:
3098:
3099:
3100:
3101:
3102:
3103:
3104:
3105:
3106:
3107:
3108:
3109:
3110:
3111:
3112:
3113:
3114:
3115:
3116:
3117:
3118:
3119:
3120:
3121:
3122:
3123:
3124:
3125:
3126:
3127:
3128:
3129:
3130:
3131:
3132:
3133:
3134:
3135:
3136:
3137:
3138:
3139:
3140:
3141:
3142:
3143:
3144:
3145:
3146:
3147:
3148:
3149:
3150:
3151:
3152:
3153:
3154:
3155:
3156:
3157:
3158:
3159:
3160:
3161:
3162:
3163:
3164:
3165:
3166:
3167:
3168:
3169:
3170:
3171:
3172:
3173:
3174:
3175:
3176:
3177:
3178:
3179:
3180:
3181:
3182:
3183:
3184:
3185:
3186:
3187:
3188:
3189:
3190:
3191:
3192:
3193:
3194:
3195:
3196:
3197:
3198:
3199:
3200:
3201:
3202:
3203:
3204:
3205:
3206:
3207:
3208:
3209:
3210:
3211:
3212:
3213:
3214:
3215:
3216:
3217:
3218:
3219:
3220:
3221:
3222:
3223:
3224:
3225:
3226:
3227:
3228:
3229:
3230:
3231:
3232:
3233:
3234:
3235:
3236:
3237:
3238:
3239:
3240:
3241:
3242:
3243:
3244:
3245:
3246:
3247:
3248:
3249:
3250:
3251:
3252:
3253:
3254:
3255:
3256:
3257:
3258:
3259:
3260:
3261:
3262:
3263:
3264:
3265:
3266:
3267:
3268:
3269:
3270:
3271:
3272:
3273:
3274:
3275:
3276:
3277:
3278:
3279:
3280:
3281:
3282:
3283:
3284:
3285:
3286:
3287:
3288:
3289:
3290:
3291:
3292:
3293:
3294:
3295:
3296:
3297:
3298:
3299:
3300:
3301:
3302:
3303:
3304:
3305:
3306:
3307:
3308:
3309:
3310:
3311:
3312:
3313:
3314:
3315:
3316:
3317:
3318:
3319:
3320:
3321:
3322:
3323:
3324:
3325:
3326:
3327:
3328:
3329:
3330:
3331:
3332:
3333:
3334:
3335:
3336:
3337:
3338:
3339:
3340:
3341:
3342:
3343:
3344:
3345:
3346:
3347:
3348:
3349:
3350:
3351:
3352:
3353:
3354:
3355:
3356:
3357:
3358:
3359:
3360:
3361:
3362:
3363:
3364:
3365:
3366:
3367:
3368:
3369:
3370:
3371:
3372:
3373:
3374:
3375:
3376:
3377:
3378:
3379:
3380:
3381:
3382:
3383:
3384:
3385:
3386:
3387:
3388:
3389:
3390:
3391:
3392:
3393:
3394:
3395:
3396:
3397:
3398:
3399:
3400:
3401:
3402:
3403:
3404:
3405:
3406:
3407:
3408:
3409:
3410:
3411:
3412:
3413:
3414:
3415:
3416:
3417:
3418:
3419:
3420:
3421:
3422:
3423:
3424:
3425:
3426:
3427:
3428:
3429:
3430:
3431:
3432:
3433:
3434:
3435:
3436:
3437:
3438:
3439:
3440:
3441:
3442:
3443:
3444:
3445:
3446:
3447:
3448:
3449:
3450:
3451:
3452:
3453:
3454:
3455:
3456:
3457:
3458:
3459:
3460:
3461:
3462:
3463:
3464:
3465:
3466:
3467:
3468:
3469:
3470:
3471:
3472:
3473:
3474:
3475:
3476:
3477:
3478:
3479:
3480:
3481:
3482:
3483:
3484:
3485:
3486:
3487:
3488:
3489:
3490:
3491:
3492:
3493:
3494:
3495:
3496:
3497:
3498:
3499:
3500:
3501:
3502:
3503:
3504:
3505:
3506:
3507:
3508:
3509:
3510:
3511:
3512:
3513:
3514:
3515:
3516:
3517:
3518:
3519:
3520:
3521:
3522:
3523:
3524:
3525:
3526:
3527:
3528:
3529:
3530:
3531:
3532:
3533:
3534:
3535:
3536:
3537:
3538:
3539:
3540:
3541:
3542:
3543:
3544:
3545:
3546:
3547:
3548:
3549:
3550:
3551:
3552:
3553:
3554:
3555:
3556:
3557:
3558:
3559:
3560:
3561:
3562:
3563:
3564:
3565:
3566:
3567:
3568:
3569:
3570:
3571:
3572:
3573:
3574:
3575:
3576:
3577:
3578:
3579:
3580:
3581:
3582:
3583:
3584:
3585:
3586:
3587:
3588:
3589:
3590:
3591:
3592:
3593:
3594:
3595:
3596:
3597:
3598:
3599:
3600:
3601:
3602:
3603:
3604:
3605:
3606:
3607:
3608:
3609:
3610:
3611:
3612:
3613:
3614:
3615:
3616:
3617:
3618:
3619:
3620:
3621:
3622:
3623:
3624:
3625:
3626:

Select allOpen in new window

 

by: evibesmusicPosted on 2009-11-09 at 15:42:27ID: 25781246

@Ray_Paseur:

Ray...looking at the code that is generated by using the print_r function, the keys that are listed below in brackets are the numbers of each row in the db that needs to be updated.  Is there a query that will update the value of the 'Checked' column to '1' for each row listed in brackets?  For example, update row 569 so that 'Checked' equals '1'. Update row 570 so that 'Checked' equals '1', etc...

Array ( [submit] => go [569] => 1 [570] => 1 [571] => 1 [572] => 1 [573] => 1 [574] => 1 [575] => 1 [576] => 1 [577] => 1 [578] => 1 [579] => 1 [580] => 1 [581] => 1 [582] => 1 [583] => 1 [584] => 1 [585] => 1 [586] => 1 [587] => 1 [588] => 1 [589] => 1 [590] => 1 [591] => 1 [WT_FPC] => id=2ddc8ba3d58c4bdffbd1257550718016:lv=1257789903241:ss=1257789903241 [PHPSESSID] => 7dh3cclc35bnm80ja2oadih246 )

 

by: Ray_PaseurPosted on 2009-11-09 at 15:42:53ID: 25781249

OK, I took that HTML and submitted it.  This is what is in the $_POST array.  Your challenge and reward arise from the opportunity to look at the keys in the POST array.  These are the numbers of the rows that have the checkboxes turned on in the form.  You would want to iterate over this array, probably using foreach, and pull out each of these keys.  Then you could use the keys to point into the data base so you can find the rows that each key points to.

As you may have noticed, the checkboxes that were not checked (or are set to un-checked status by the client) are not present in the POST array.  That's too bad, and I think it is one of the design flaws of the WWW form handlers.  So you will need to somehow keep track of what checkboxes you presented on the form.  If you presented one that was checked, and the client unchecked it, it's gone now.  By its absence, you know that you would want to do whatever your process calls for with unchecked boxes.

array(24) {
  [569]=>
  string(1) "1"
  [570]=>
  string(1) "1"
  [571]=>
  string(1) "1"
  [572]=>
  string(1) "1"
  [573]=>
  string(1) "1"
  [574]=>
  string(1) "1"
  [575]=>
  string(1) "1"
  [576]=>
  string(1) "1"
  [577]=>
  string(1) "1"
  [578]=>
  string(1) "1"
  [579]=>
  string(1) "1"
  [580]=>
  string(1) "1"
  [581]=>
  string(1) "1"
  [582]=>
  string(1) "1"
  [583]=>
  string(1) "1"
  [584]=>
  string(1) "1"
  [585]=>
  string(1) "1"
  [586]=>
  string(1) "1"
  [587]=>
  string(1) "1"
  [588]=>
  string(1) "1"
  [589]=>
  string(1) "1"
  [590]=>
  string(1) "1"
  [591]=>
  string(1) "1"
  ["submit"]=>
  string(2) "go"
}
                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:

Select allOpen in new window

 

by: evibesmusicPosted on 2009-11-10 at 10:39:47ID: 25788298

Finalized functioning code below.  Thanks to all of the Experts that helped me through this one...pheww...Ray - that means you.  Cheers!

<?php
                    // ENSURE THAT PHP SESSION HAS BEEN STARTED					
                    session_start();
					// SELECT ALL INFORMATION IN THE DB
						$sql2="SELECT * FROM controller_reports";
						// RUN QUERY AND THROW ERROR MESSAGE IF QUERY ERROR
						$result2 = mysql_query($sql2);
						while($getinfo2 = mysql_fetch_assoc($result2)){
						
                    	foreach($_POST as $key => $value) {
							$row_number = $key; // $row_number EQUALS THE KEY STORED IN THE ARRAY
							// UPDATE THE DB AND SET CHECKED TO YES WHEN THE KEY MATCHES THE NUMBER IN THE ID COLUMN
								$sql="UPDATE controller_reports SET Checked='Yes' WHERE id=$row_number";
								// RUN QUERY AND THROW ERROR MESSAGE IF QUERY ERROR
								$result = mysql_query($sql);					
							
							if($row_number != $getinfo2['id'] && $getinfo2['Checked'] == 'Yes'){
								$sql="UPDATE controller_reports SET Checked='No'";
								// RUN QUERY AND THROW ERROR MESSAGE IF QUERY ERROR
								$result = mysql_query($sql);					
								}//END IF LOOP
							
							}//END FOREACH LOOP
						
						}//END WHILE LOOP
					echo "<div style='height:300px;'>";
					echo "Your changes have been saved in the database.";
					echo "</div>";
						
                    ?>

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:

Select allOpen in new window

 

by: Ray_PaseurPosted on 2009-11-10 at 14:24:16ID: 25790565

Congrats, and thanks for the points! ~Ray

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...