<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Copyright (c) 2004 Dustin Sallings <dustin+html@spy.net>
arch-tag: D52D5360-5D6E-11D9-AD4B-000A957659CC
-->
<html>
<head>
<title>Testing</title>
<link rel="stylesheet" href="style.css"/>
<style type="text/css">
#keywordmatches {
display: none;
background-color: #e7edd3;
color: black;
font-size: x-small;
border: 1px solid #69c;
width: 250px;
}
#keywordmatches ul {
text-indent: -0.5px;
list-style: none;
padding-left: 1em;
margin: 1px;
}
</style>
</head>
<body>
<script type="text/javascript" src="searchdata.js"></script>
<script type="text/javascript" src="searchfun.js"></script>
<form method="post" action="" onsubmit="search(); return false;">
<fieldset>
<legend>Search for Photos</legend>
<label for="keywords">Keywords</label>
<div>
<input id="keywords" name="keywords" size="60" value=""
onkeyup="keyUp(this);"/>
</div>
<div style="font-size: x-small" id="keywordlist"><span/></div>
<div id="keywordmatches"><span/></div>
<label for="sdir">Newest images</label>
<div>
<select id="sdir" name="sdir">
<option value="newfirst">first</option>
<option value="newlast">last</option>
</select>
</div>
<label for="perpage">Results Per Page</label>
<div>
<select id="perpage" name="perpage">
<option value="10">10</option>
<option value="50" selected="selected">50</option>
<option value="100">100</option>
</select>
</div>
<div>
<input type="submit" value="Search"/>
<input type="reset" value="Clear"
onclick="updateKwInfo(''); setResults('');"/>
</div>
</fieldset>
</form>
<div id="found"><span/></div>
</body>
</html>