// JavaScript Document
function searchform(){
	var  hostname = window.location.hostname;
	var theURL = 'http://'+hostname+'/search/tsepsearch.php';
	document.write('<table width="160" border="0" cellspacing="0" cellpadding="0">');
	document.write('<form name=frm action="'+theURL+'" method="POST">');
	document.write('<input type="hidden" name="s" value="0" />');
    document.write('<input type="hidden" name="e" value="20" />');
	document.write('<tr>');
	document.write('<td width="140" align="right">');
    document.write('<input type="text" name="q" size=12>');
    document.write('  </td> ');
    document.write('  <td width="16" align="center"> ');
    document.write('    <input type="submit" value="search">');
    document.write('  </td>');
    document.write(' </tr>');
	document.write('</form>');
    document.write('</table>');
	
	
}