<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Suggester</title>
<script type="text/javascript" src="Subsys/Js.js"></script>
<script>
var textInputID = "typo"; //ID of text input
var doAutoComplete = true; //the first value will be used for that
var resultPattern = "<a href=\"http://www.google.com/search?complete=1&hl=en&q=%index%\" target=\"search_rez\">%index%</a>"; //use %index% and %value% placeholders to address result array items of front-end
</script>
<script type="text/javascript" src="suggester.js"></script>
<LINK REL="StyleSheet" HREF="suggester.css" type="text/css">
</head>
<body>
<h1>Suggester</h1>
<form>
Type your text here: <input type="text" class="edt" id="typo" style="width: 500px" /><br/>
</form>
<font color="#808080">P.S. Text auto complete will work correct with actual data</font>
</body>
</html>