function changeSearchTarget(formId, loc) {
	var form = document.getElementById(formId);
	
	switch(loc) {
		case 'www':
			var searchTerms = document.getElementById('searchTerms');
			searchTerms.setAttribute('name', 'keywords');
			form.setAttribute('method', 'GET');
			form.setAttribute('action', 'http://search.belfastmedia.com/index.aspx');
			form['action'] = 'http://search.belfastmedia.com/index.aspx';
			break;
		default:
			form.setAttribute('method', 'POST');
			form.setAttribute('action', 'http://www.belfastmedia.com/isearch2/index.php');
			form['action'] = 'http://www.belfastmedia.com/isearch2/index.php';
			break;
	}
}