function search() {
	if("" != document.getElementById("searchbox").value) {
		document.getElementById("searchform").submit();
	}
	else {
		document.getElementById("searchbox").focus();
	}
}
function search2() {
	return "" != document.getElementById("searchbox").value;
}
function mov(n) {
	document.getElementById("a" + n).style.backgroundColor = "#CAC7FF";
}
function mout(n) {
	if(n % 2 == 0) {
		document.getElementById("a" + n).style.backgroundColor = "#fff";
	}
	else {
		document.getElementById("a" + n).style.backgroundColor = "#efeefe";
	}
}