hour = '10:00';
							$s1->title = 'Los vengativos:final del juego';
							$s1->format = 'Comic Sans';
							$s1->lang = 'Castellano';
							
							
							$s2 = new Session();
							$s2->hour = '12:00';
							$s2->title = 'Los vengativos:final del juego';
							$s2->format = 'Comic Sans';
							$s2->lang = 'Castellano';
							
							$s3 = new Session();
							$s3->hour = '14:00';
							$s3->title = 'Los vengativos:final del juego';
							$s3->format = 'Comic Sans';
							$s3->lang = 'Castellano';
							$sessions = array($s1, $s2, $s3);							
							$num_s = 3; 
							
							function drawSessions($ses){
							echo "
"; 
								foreach($ses as $s){ 
								echo ""; 
								
									echo "|   | ". $s->hour." | "; 
									echo "  | ". $s->title." | "; 
									echo "  | ". $s->format." | "; 
									echo "  | ". $s->lang." | "; 
									echo "  |    | "; 
									echo "
"; 
									
								} 
								echo ""; 
								echo "|   |    | "; 
								echo "
"; 
							echo "
";
							}
							
							drawSessions($sessions);
						?>