function formSubmit(e) {
  if (!e)
    e = window.event;
  if (e.which) {
    kodas = e.which;
  } else if (e.keyCode) {
    kodas = e.keyCode;
  } else {
  	return;
  } 
  if(kodas == 13){
  	document.paieska.submit();
  } 
}
function url(adresas) {
  	window.location.href = adresas;
}

