function Write_Search() {
		var sHTML;
		var iFldLength;
              if (navigator.appName.indexOf("Netscape") != -1) {
                      iFldLength=9;}
              else {
			iFldLength=18;}
              //alert( iFldLength);
              sHTML = "";
              sHTML = "<div id=\"SearchDiv\"><form action=\"#\" method=\"get\" name=\"searchfrm\">";
		sHTML = sHTML + "<table width=\"255\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
		sHTML = sHTML + "<tr align=\"left\" valign=\"top\"><td width=\"50\"><img src=\"images/pixclear.gif\" width=\"50\" height=\"1\" alt=\"\" border=\"0\"></td>";
		sHTML = sHTML + "<td width=\"134\"><img src=\"images/pixclear.gif\" width=\"134\" height=\"1\" alt=\"\" border=\"0\"></td><td width=\"10\"><img src=\"images/pixclear.gif\" width=\"10\" height=\"1\" alt=\"\" border=\"0\"></td><td width=\"61\"><img src=\"images/pixclear.gif\" width=\"61\" height=\"1\" alt=\"\" border=\"0\"></td></tr>";
		sHTML = sHTML + "<tr align=\"left\" valign=\"top\"><td align=\"left\" valign=\"middle\" width=\"50\"><span class=\"srchlabel\">SEARCH</span></td><td  width=\"134\"><input type=\"text\" name=\"SrchString\" size=\""+iFldLength+"\"></td>";
		sHTML = sHTML + "<td width=\"10\"><img src=\"images/pixclear.gif\" width=\"10\" height=\"1\" alt=\"\" border=\"0\"></td><td align=\"left\" valign=\"middle\" width=\"61\"><input type=\"image\" src=\"images/go_button.gif\" width=\"41\" height=\"20\" border=\"0\"></td></tr>";
		sHTML = sHTML + "</table></form></div>";
		document.write(sHTML);
}