<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- google_search.html - created by Eric Pence -->
<html>
<head>
<title>Google search</title>
<meta name="keywords" content="search tips">

<script type="text/javascript" language="JavaScript">
<!-- Hide the code from non-JavaScript-enabled browsers

var cPath = window.location.pathname;
var initialPage = cPath.substring(cPath.lastIndexOf('/') + 1);

function onLoad() {
window.resizeTo(500,500);
clearText();
}

// Clear search text
function clearText() {
document.Searchform.searchtext.value = '';
document.Searchform.searchtext.focus();
}

// Trap Enter key in Netscape for search
if (navigator.appName == 'Netscape') {
//window.captureEvents(Event.KEYPRESS);
window.onKeyPress = netscapeKeyPress;
}

function netscapeKeyPress(e) {
if (e.which == "13") {
Search();
}
}

// Go to the selected search engine with the input text
function Search() {
var stext = document.Searchform.searchtext.value;
var len = stext.length;

// If string is phrase (bracketed by quotes) replace quotes with %22
if ((stext[0] == '"') & (stext[len-1] == '"')) {
var newstext = '%22' + stext.substring(1,len-1) + '%22';
stext = newstext;
len = len + 4;
}

// Replace embedded blanks with + signs
for (i=1; i<len; i++) {
if (stext[i] == ' ') {
var newstext = stext.substring(0,i) + '+' + stext.substring(i+1,len);
stext = newstext;
}
}

var urlString = 'http://www.google.com/search?q=' + stext + '&meta=lr%3D%26hl%3Den&btnG=Google+Search';
window.location.href = urlString;
}

// Stop hiding this script -->
</script>

</head>

<!--body onLoad="document.Searchform.searchtext.focus()" bgcolor="#95B9C7"-->
<body onLoad="onLoad()">

<a name="top"></a>

<br><img src="images/clear.gif" height="100"><br>
<table width="100%"><tr>
<td width="35%" height="80" align="right" valign="top">
<br><img src="images/clear.gif" height="55"><br>
<img src="images/scope.gif" height="70" align="absmiddle" title="Search" style="margin-right:10">
<span style="font-size:35px">Search...</span>
</td>
<td width="35%" align="center" valign="top">
<img src="images/google_image.gif">
<br><img src="images/clear.gif" height="10"><br>
<form name="Searchform" action="javascript:Search()" method="POST">
<font face="arial,helvetica,sans-serif">
<!--b>Search for:</b-->
</font>
<input type="text" name="searchtext" size="60" maxlength="200" value="" style="font-size:16px;height:24px">
<input type="button" value="&nbsp; Search &nbsp;" name="SearchButton" onClick="Search()" style="font-size:16px;height:24px">
</font></font>
</form><br>
<a href="https://www.google.com" style="font-size:20px;font-weight:bold">Google.com</a>
</td>
<td width="30%"></td>
</tr></table>

</body>
</html>