<?php
class Block {
	var $header;
	var $body;

	public function Block($header, $body) {
		$this->header = $header;
		$this->body = $body;
	}
}
?>