// Function to generate text to create a grey menu for HighSlide.
function mnuGrey(title) {  
		document.write("							<div class='highslide-caption' id='Click to enlarge'>");
		document.write("								<div style='height: 34px; background-color: #777777'>");
		document.write("									<table width='100%' cols='3' border='0'>");
		document.write("										<tr>");
		document.write("											<td colspan='1' width='35%' align='center' valign='top' style='background-color: #777777'>");
		document.write("												" + title);
		document.write("											</td>");
		document.write("											<td colspan='1' width='30%' align='center' valign='top' style='background-color: #777777'>");
		document.write("												<a border='0' href='#' onclick='return hs.previous(this)' class='control'>");
		document.write("												<img src='/images/system/leftarrow01.gif' />");
		document.write("												</a>");
		document.write("												&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
		document.write("												<a border='0' href='#' onclick='return hs.next(this)' class='control'>");
		document.write("													<img src='/images/system/rightarrow01.gif' />");
		document.write("												</a>");
		document.write("											</td>");
		document.write("											<td colspan='1' width='35%' align='right' valign='top' style='background-color: #777777'>");
		document.write("												<a href='#' onclick='return hs.close(this)' class='control'>Close</a>");
		document.write("												<br />");
		document.write("												<a href='#' onclick='return false' class='highslide-move control'>Move</a>");
		document.write("											</td>");
		document.write("										<tr>");
		document.write("									</table>");
		document.write("								</div>");
		document.write("							</div>");
}

