Index: schedule/Module/control.php
===================================================================
--- schedule/Module/control.php	(revision 17437)
+++ schedule/Module/control.php	(revision 17438)
@@ -313,4 +313,6 @@
 //$data  = array();
 //$counter=0;
+$prevtimestamp = 0;
+
 	while($rows = mysql_fetch_array($fetch))
 	{
@@ -477,16 +479,24 @@
 			var newOutertr = document.createElement("tr");
 
-			newtable.appendChild(newtd_c1);
+			/*newtable.appendChild(newtd_c1);
 			newtable.appendChild(newtd_c6);
 			newtable.appendChild(newtd_c7);
 
-			newdiv.appendChild(newtable);
-
-			if(nextrow != null){	
-				var doc = document.getElementById(nextrow);
-				$(doc).after(newdiv);
-			}else{
-				targetView.appendChild(newdiv);
-				//$(targetView).after(newtr<?php echo $cnt; ?>);
+			newdiv.appendChild(newtable); */
+
+			if($prevtimestamp != 0 && $prevtimestamp!= timestamp) {
+				newtable.appendChild(newtd_c1);
+				newtable.appendChild(newtd_c6);
+				newtable.appendChild(newtd_c7);
+
+				newdiv.appendChild(newtable);			
+
+				if(nextrow != null){	
+					var doc = document.getElementById(nextrow);
+					$(doc).after(newdiv);
+				}else{
+					targetView.appendChild(newdiv);
+					//$(targetView).after(newtr<?php echo $cnt; ?>);
+				}
 			}
 	<?php
@@ -494,5 +504,8 @@
 			
 		$cnt++;
+		$prevtimestamp = $timestamp;
 	}
+
+
 if(mysql_num_rows($fetch)<1)
 {
