//alert('xento_default.js loaded')


function checkSearchLength(elValue){
 if(elValue.length < 5){
   document.getElementById("searchButton").disabled = true
  }
  else{
   document.getElementById("searchButton").disabled = false
  }
}


function xentoPopup(theURL,winName,width,height){
    window.open(theURL,winName,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+ width +',height='+ height+'');
	return false
}	