/* Function appends a site restriction to the query terms submitted to google */
function GoogleQuery(Thisform) {
	Thisform.query.value = Thisform.query.value + " site:www.clary.com";
	Thisform.submit();
}
