//Cache control

function RunSearch()
{
var form = document.SearchForm;
var query = form.SearchQuery.value;

	if( query == '' ){
		alert('Sorry, you must enter a search term.');
		form.SearchQuery.focus();
	}
	else{
	window.location.href = '/' + form.SearchPath.value + '/BlogSearch?SearchView&Query='+query+'&Start=1&Count=-1';
	}
}

/*	Javascript routines for http://www.benpoole.com.
	Version 3.10 : Benedict Poole : Dec. 2003
	Search code courtesy Jake Howlett (http://www.codestore.net)
*/

function sendMail(pt1, pt2, pt3) {
/*	You couldn't fool your mother on the foolingest day of your life if
	you had an electrified fooling machine
*/
	locationstring = "mailto:" + pt1 + "@" + pt2 + pt3;
	window.location = locationstring;
}


