	var d = document;

function ge(id){

	return d.getElementById(id);
}

d.onkeydown = function ev(e){

	var code;

	if (!e) var e = window.event;
	if (e.keyCode) code = e.keyCode;
	else if (e.which) code = e.which;

	if ((code == 37) && (e.ctrlKey == true)){
		var destination = ge("previous_page");
		if (destination) location.href = destination.href;
	}

	if ((code == 39) && (e.ctrlKey == true)){
		var destination = ge("next_page");
		if (destination) location.href = destination.href;
	}
}

function checkSearchForm(obj){

	if (obj.q.value.length < 2){

		alert('Поиск производится по строке длиной не менее двух символов!');
		obj.q.focus();
		return false;

	} else {

		return true;
	}
}
