
function header(title,path) {
	document.write('<table border="0" cellspacing="0" cellpadding="0" bgcolor="#ffffff" width="100%" align="center">');
	document.write('<tr>');
	document.write('<td align="center" width="120"><img src="',path,'image/maru-a.gif" alt="Exotic Pet Clinic" width="100" height="46"></td>');
	document.write('<td><hr><font size="5" color="#000050"><b>@');
	if( title == "" ) {
		if( document.title.indexOf(":") == -1 ) {
			title = document.title;
		} else {
			tt = document.title.split(":");
			title = tt[1];
		}
	}
	document.write(title);
	document.write('</b></font><hr></td>');
	document.write('</tr>');
	document.write('</table>');
}

