function goon(obj) {
obj.style.backgroundColor='#f6f6f6'
}

function gooff(obj) {
obj.style.backgroundColor='#ffffff'
}

function checkform(par) {
data=par.query.value;
	if(data.length==0) {
	alert("Строка запроса пуста");
	return false; 
	}
	else if (1 >= data.length) {
	alert("Введите не менее 2х символов");
	return false;
	}
	else {
	return true;
	}
}

function open_win(loc) {
window.open(loc, "","height=350,width=700,resizable=1,toolbar=0,menubar=0,scrollbars=1");
}

function nexttype() {
newlocation='order.phtml?vid='+document.forms.fake.other.value;
document.location=newlocation;
}