function contactUs(path)
{
	contact  = window.open(path+"contact_us.php","temp2","width=600,height=350,scrollbars=yes");
	contact.focus();
}

var searchDone=false;
function searchIt(path)
{
	if(searchDone) return false;
	searchDone=true;
	var formObj = document.searchForm	;
	if(formObj.searchOptions.value=="quote")
	{
		formObj.action=(path+"listQuotes.php?typ=q&qry="+formObj.query.value);
	}else
	if(formObj.searchOptions.value=="author")
	{
		formObj.action=(path+"listAuthors.php?typ=a&qry="+formObj.query.value);
	}else
	if(formObj.searchOptions.value=="contributor")
	{
		formObj.action=(path+"listContributors.php?typ=c&qry="+formObj.query.value);
	}else
	if(formObj.searchOptions.value=="wallpaper")
	{
		formObj.action=(path+"downloads/wallpapers.php?typ=w&qry="+formObj.query.value);
	}else
	if(formObj.searchOptions.value=="screensaver")
	{
		formObj.action=(path+"downloads/screensavers.php?typ=s&qry="+formObj.query.value);
	}else

	{
		formObj.action=(path+"listSubjects.php?typ=b&qry="+formObj.query.value);
	}
}

