
function title(title,subtitle,color) {
	document.write('<table border="0" cellpadding="3" cellspacing="0" bgcolor="#ffffff" align="center" width="100%">');
	document.write('<tr>');
	document.write('<th rowspan="2" nowrap width="100" bgcolor="',color,'" valign="middle">');
	document.write('<font size="4" color="#000000">',title,'</font>');
	document.write('</th>');
	document.write('<td>');
	document.write('<font size="2">',subtitle,'</font><br>');
	document.write('</td>');
	document.write('</tr>');
	document.write('<tr>');
	document.write('<td height="5" bgcolor="',color,'">');
	document.write('</td>');
	document.write('</tr>');
	document.write('</tr>');
	document.write('</table>');
}

function header(title,path) {
	document.write('<font size="2"><br></font>');
	document.write('<center>');
	document.write('<h2><img src="',path,'image/header-l.gif" alt="icon" width="32" height="16"><font color="#000050"> ',title,' </font><img src="',path,'image/header-r.gif" alt="icon" width="32" height="16"></h2>');
	document.write('</center>');
}

