function doArchiveSearch (){

var strText = new String();
var lastYear = now.getFullYear()-1;
var thisYear = now.getFullYear();
strText = document.SearchBox.SearchTerms.value;

if (strText == '') {
self.location = document.SearchBox.WebPath.value + '/search.php/Type/1'}
else
{
var newstr = strText.replace(' ', '+');
self.location = document.SearchBox.WebPath.value + '/searchresults.php/Type/1/Query/'+newstr + '/Pub/All/Start/1/Count/10/SearchYearBegin/' + lastYear + '/SearchYearEnd/' + thisYear + '/SearchOrder/1/SearchMax/500';
}
}

function doLiveSearch (){

var strText = new String();
strText = document.SearchBox.SearchTerms.value;
if (strText == '') {
self.location = document.SearchBox.WebPath.value + '/search.php/Type/0' }
else
{
var newstr = strText.replace(' ', '+');
self.location = document.SearchBox.WebPath.value + '/searchresults.php/Type/0/Query/'+newstr + '/Pub/All/Start/1/Count/10/SearchOrder/1/SearchMax/500';
}
}

function openWin(url){
window.open(url,"myWin","width=400,height=400,location=no,scrollbars=yes,title=no,resizable=yes")
}
