c_mi('Personal Health > Home', 'Personal Health Home', '/ph/ph_main_page.htm');
c_mi('Personal Health > Fact Sheets', 'Fact Sheets', '/ph/ph_fact_sheets.htm');
c_mi('Personal Health > Enrollment Forms', 'Enrollment Forms', '#');
c_mi('Personal Health > How Are We Doing?', 'How Are We Doing?', '/ph/ph_how_are_we_doing.htm');
c_mi('Personal Health > Links', 'Links', '#');
c_mi('Personal Health > Contact Us', 'Contact Us', '/contact_ph.htm');

function c_mi(status, desc, link) {
	var html = ""

	html += "<tr>\n";
	html += '<td height="35" class="menu_item" onmouseover="this.className=' + "'menuover'; window.status='";
	html += status + "'; return true;" + '" onmouseout="this.className=' + "'menu_item'; window.status=''; return true;";
	html += '" onClick="window.location=' + "'" + link + "'" + '" style="cursor:hand"><b>' + desc + "</a></b></td>\n";
	html += "</tr>\n";

	document.write(html);
	return;
}