function infoSearch(){
	if (document.forms[1].s.value==""){
		location.href="http://www.info.bg";
	}else{
		eval('location.href="http://www.info.bg/welcome.asp?searchstring='+document.forms[1].s.value+'"');
	}
}
function changeImg(){
	document.forms[1].s.blur();
	var getString=document.forms[1].s.value;
	if (getString==""){
		key=false;
	}else{
		key=true;
		document.images["bsubmit"].src="/frontpage/images/buttonsub.gif";
		return true;
	}
}
function restoreImg(){
	if (key){
		document.images["bsubmit"].src="/frontpage/images/lupa.gif";
		return true;
	}
}
function searchSubmit(){
	if (key){
		var getOption;
		var OpLength=document.forms[1].searchlist.options.length;
		for (var k=0;k<OpLength; k++){
			if (document.forms[1].searchlist.options[k].selected==true){
			getOption=document.forms[1].searchlist.options[k].value;
			}
		}
		if (getOption=="1"){
			document.forms[2].TextRestriction.value=document.forms[1].s.value;
			document.forms[2].submit();
		}else{
			document.forms[1].submit();
		}
	}else{
		alert("Въведете фраза за търсене!");
		document.forms[1].s.focus();
	}
}
