var q, s;
function load() {
	s=document.getElementById('s');
	q=document.getElementById('q');
	q.focus();
}
function help() {
	q.value='@help';
	blink(s);
}
function plugin() {
	if ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function")) {
		window.sidebar.addSearchEngine(
			"http://multiseek.net/plugin/multiseek.src",
			"http://multiseek.net/plugin/multiseek.png",
			"MultiSeek",
			"Web"
		);
	} else if ((typeof window.external == "object") && (typeof window.external.AddSearchProvider == "function")) {
		window.external.AddSearchProvider(
			"http://multiseek.net/plugin/multiseek.xml"
		);
	} else {
		alert("You will need a supported browser to install this plugin.\nFirefox, or Internet Explorer 7, should work.");
	}
}
function blink(el) {
	var timer=setInterval(function() {
		el.style.visibility= ('hidden'==el.style.visibility) ?
			'visible' : 'hidden';
		}, 75
	);
	setTimeout(function() {
		clearInterval(timer);
	}, 500);
}
