
function details(state) {
	tmp_link = "javascript: policy_compress();";
	tmp_class1 = "AVAILABILITY_CLOSE_LINK";
	tmp_class3 = "AVAILABILITY_CLOSE_BOLD";

	var ret = "";

	ret += "<table width=\"300\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
		ret += "<tr><td height=\"8\" width=\"8\"><img src=\"http://www.harborcreektownship.org/format_images/tl_gray.gif\" height=\"10\" width=\"10\"></td><td style=\"border-top:2px solid gray\" height=\"8\" width=100% bgcolor=\"#eeeeee\"><img src=\"http://www.harborcreektownship.org/format_images/spacer.gif\" height=\"6\"></td><td height=\"8\" width=\"8\"><img src=\"http://www.harborcreektownship.org/format_images/tr_gray.gif\" height=\"10\" width=\"10\"></td></tr>";
	ret += "</table>";

	ret += "<table width=\"300\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
		ret += "<tr><td style=\"border-left:2px solid gray; border-right:2px solid gray\" bgcolor=\"#eeeeee\" align='right' valign='top'><p style=\"text-align: center; margin-left: 4px; margin-right: 4px; margin-bottom: 6px; margin-top: 0px; line-height: 11pt; font-size: 12pt; color: #000000; font-family: Arial, Goudy Old Style, Verdana\"><a href=\"" + tmp_link + "\" class=\"" + tmp_class1 + "\">CLOSE WINDOW<a href=\"" + tmp_link + "\" class=" + tmp_class3 + ">" + "&nbsp;X" + "</a></p></td></tr>";
	ret += "</table>";

	ret += "<table width=300 border=0 cellspacing=0 cellpadding=0>";
		ret += "<tr>";
			ret += "<td style=\"border-left:2px solid gray; border-right:2px solid gray\" bgcolor=#eeeeee>";
				ret += "<p style=\"text-align: justify; margin-left: 4px; margin-right: 4px; margin-bottom: 10px; margin-top: 0px; line-height: 11pt; font-size: 10pt; color: #000000; font-family: Arial, Goudy Old Style, Verdana\">";
					ret += "Harborcreek Township Supervisors approved a new Advanced Park Reservation Policy at their September 21, 2005 Board meeting.  The policy is effective immediately. <br><br>There will be an advanced reservation fee of $50.00.  This fee applies to reservations made between June 1 - February 1, for the next rental season, and is non-refundable. ";
					ret += "Any advanced reservations need to be aware that rental fees may be subject to change, and will be responsible to pay any increased fee. The Parks and Recreation Board will review rental fees in the beginning of the season, at which time, advanced reservations will be notified.<br><br>";
					ret += "For reservations, please contact Connie Cruz, Parks Project Coordinator at (814) 899-3171.";
				ret += "</p>";
			ret += "</td>";
		ret += "</tr>";
	ret += "</table>";

	ret += "<table width=300 border=0 cellpadding=0 cellspacing=0>";
		ret += "<tr><td height=\"8\" width=\"8\"><img src=\"http://www.harborcreektownship.org/format_images/bl_gray.gif\" height=\"10\" width=\"10\"></td><td style=\"border-bottom:2px solid gray\" height=\"8\" bgcolor=\"#eeeeee\"><img src=\"http://www.harborcreektownship.org/format_images/spacer.gif\" height=\"6\"></td><td height=\"8\" width=\"8\"><img src=\"http://www.harborcreektownship.org/format_images/br_gray.gif\" height=\"10\" width=\"10\"></td></tr>";
	ret += "</table>";

	var answ = document.getElementById("policy");

	leftVal = (screen.width / 2)-(570 / 2);
	topVal = (screen.height / 2)-(70*2);

	if (answ) {
		answ.style.color = "#000000";
		answ.innerHTML = ret;

		answ.style.visibility = state;

		answ.style.left = leftVal;
		answ.style.top = topVal;
	}
}

function policy_compress() {
	document.getElementById("policy").style.visibility = "hidden";
}

