var searchInputIsActive = false;
var textInputIsActive = false;
function init() {
	if (document.getElementById) {
		document.onkeydown = register;
		if (document.forms['zz'].search) {
 			document.forms['zz'].search.onfocus = function () {
                         searchInputIsActive = true; 
                         if (document.forms['zz'].search.select) {document.forms['zz'].search.select();}
                     };
			document.forms['zz'].search.onblur = function () {searchInputIsActive = false;};
		}
		if (document.forms['ch2']){
		if (document.forms['ch2'].message) {
 			document.forms['ch2'].message.onfocus = function () {
                         textInputIsActive = true; 
                     };
			document.forms['ch2'].message.onblur = function () {textInputIsActive = false;};
		}}
	}
}

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

	if ((code == 13) && (e.ctrlKey == true)) document.forms['zz'].submit();
	if ((!searchInputIsActive)&&(!textInputIsActive)) {
		if ((code == 37) && (e.ctrlKey == true)) {
			var destination = document.getElementById('previous_page');
			if (destination) location.href = destination.href;
		}
		if ((code == 39) && (e.ctrlKey == true)) {
			var destination = document.getElementById('next_page');
			if (destination) location.href = destination.href;
		}
		if ((code == 38) && (e.ctrlKey == true) && document.forms['zz'].search) {
			//if (document.forms['zz'].search.select) {document.forms['zz'].search.select();}
			document.forms['zz'].search.focus();
		}
	}
}


function valu(n) 
{
if (n==1) document.forms['zz'].action="http://protoplex.ru/";
if (n==2) document.forms['zz'].action="http://soft.protoplex.ru/";
if (n==3) document.forms['zz'].action="http://funny.protoplex.ru/";
if (n==4) document.forms['zz'].action="http://lib.protoplex.ru/";
if (n==5) document.forms['zz'].action="http://top.protoplex.ru/";
if (n==6) document.forms['zz'].action="http://forum.protoplex.ru/";
if (n==7) document.forms['zz'].action="http://list.protoplex.ru/";
if (n==8) document.forms['zz'].action="http://books.protoplex.ru/";
if (n==9) document.forms['zz'].action="http://scripts.protoplex.ru/";
if (n==10) document.forms['zz'].action="http://referats.protoplex.ru/";
if (n==11) document.forms['zz'].action="http://protoplex.ru/photo/";
if (n==12) document.forms['zz'].action="http://protoplex.ru/blog/";
}

