/*
 * Creates header string.
 */
	function searchscrub(keyword)
	{
		var kwVal = keyword.value;

		//alert("BTH: In formCheckForJS with kwVal = " + kwVal);

		if (kwVal != "" && kwVal != "Enter keyword(s)")
		{
			var pattern = /[^a-zA-Z0-9 ]/g;

			kwVal = kwVal.replace(pattern, "");

			keyword.value = kwVal;

			//alert("formCheckForJS: keyword.value now = " + keyword.value);
		}

		//alert("BTH: In formCheckForJS with kwVal = " + kwVal);

		if (kwVal != "" && kwVal != "Enter keyword(s)")
		{
			var pattern = /(SELECT | FROM | IN | WHERE |DROP |INSERT |DELETE )/ig;

			kwVal = kwVal.replace(pattern, "");

			keyword.value = kwVal;

			//alert("formCheckForJS: keyword.value now = " + keyword.value);
		}

		return true;
	}

strHeader ='<table width="760" border="0" cellspacing="0" cellpadding="0">'+
		'<tr>'+
			'<td width="80%" valign="top">'+
				'<table width="100%"  border="0" cellspacing="0" cellpadding="0">'+
					'<tr>'+
						'<td width="25%" valign="top">'+
							'<a href="" onClick = "return false;" onMouseOut="MM_HideALL(0);" onMouseOver="MM_Show11();">'+
								'<img src="images/about_knoll_off.gif" width="151" height="22" name="Image11" border="0">'+
							'</a>'+
						'</td>'+
						'<td width="1" class="rule">'+
							'<img src="images/spacer.gif" width="1" height="1" alt="" title="">'+
						'</td>'+
						'<td width="25%" valign="top">'+
							'<a href=""  onClick = "return false;" onMouseOut="MM_HideALL(0);" onMouseOver="MM_Show12();">'+
								'<img src="images/products_off.gif" width="151" height="22" name="Image12" border="0">'+
							'</a>'+
						'</td>'+
						'<td width="1" class="rule">'+
							'<img src="images/spacer.gif" width="1" height="1" alt="" title="">'+
						'</td>'+
						'<td width="25%" valign="top">'+
							'<a href=""  onClick = "return false;" onMouseOut="MM_HideALL(0);" onMouseOver="MM_Show13();">'+
								'<img src="images/resources_off.gif" width="151" height="22" name="Image13" border="0">'+
							'</a>'+
						'</td>'+
						'<td width="1" class="rule">'+
							'<img src="images/spacer.gif" width="1" height="1" alt="" title="">'+
						'</td>'+
						'<td width="25%" height="22" valign="top">'+
							'<a href=""  onClick = "return false;" onMouseOut="MM_HideALL(0);" onMouseOver="MM_Show14();">'+
								'<img src="images/contactus_off.gif" width="151" height="22" name="Image14" border="0">'+
							'</a>'+
						'</td>'+
					'</tr>'+
					'<tr>'+
						'<td valign="top" class="rule">'+
							'<img src="images/spacer.gif" width="151" height="1" alt="" title="">'+
						'</td>'+
						'<td valign="top" class="rule">'+
							'<img src="images/spacer.gif" width="1" height="1">'+
						'</td>'+
						'<td valign="top" class="rule">'+
							'<img src="images/spacer.gif" width="151" height="1" alt="" title="">'+
						'</td>'+
						'<td valign="top" class="rule">'+
							'<img src="images/spacer.gif" width="1" height="1">'+
						'</td>'+
						'<td valign="top" class="rule">'+
							'<img src="images/spacer.gif" width="151" height="1" alt="" title="">'+
						'</td>'+
						'<td valign="top" class="rule">'+
							'<img src="images/spacer.gif" width="1" height="1">'+
						'</td>'+
						'<td valign="top" class="rule">'+
							'<img src="images/spacer.gif" width="151" height="1" alt="" title="">'+
						'</td>'+
					'</tr>'+
				'</table>'+
			'</td>'+
			'<td width="1" class="rule">'+
				'<img src="images/spacer.gif" width="1" height="1">'+
			'</td>'+
			'<td width="20%" valign="top">'+
				'<table width="100%"  border="0" cellspacing="0" cellpadding="0">'+
					'<tr>'+
						'<td height="20">'+
							'<table width="100%"  border="0" cellspacing="0" cellpadding="0">'+
								'<form name="menusearchform" method="GET" action="search.jsp" onsubmit="return searchscrub(this.qt)">'+
									'<tr>'+
										'<td height="22" valign="middle">'+
											'<img src="images/spacer.gif" width="3" height="1" alt="" title="">'+
												'<input name="qt" type="text" class="searchbox" value="Search" onclick="this.value=\'\'">'+
														'<input type="image" src="images/go_but.gif" alt="Go" title="Go" align="absbottom" width="25" height="18" border=0>'+
										'</td>'+
									'</tr>'+
								'</form>'+
							'</table>'+
						'</td>'+
					'</tr>'+
					'<tr>'+
						'<td class="rule">'+
							'<img src="images/spacer.gif" width="151" height="1" alt="" title="">'+
						'</td>'+
					'</tr>'+
				'</table>'+
			'</td>'+
			'<td width="1" class="rule">'+
				'<img src="images/spacer.gif" width="1" height="1" alt="" title="">'+
			'</td>'+
		'</tr>'+
	'</table>'
document.write(strHeader);