<!--
function search()
{
var str
var word
var newstr
var x

str = new String(document.FormName.q.value);
word=str.split(' ');
newstr = new String(word[0]);
for (x=1;x<word.length;x++)
	{
	newstr = newstr + "%20" + word[x]; 
	}

location.href = "/search.asp?strquery=" + newstr;
}
	

function popUp(url) {
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
self.name = "mainWin";
}
//-->