function submittown() {
document.townform.submit()
}

function srchtownOnEnter(event){ 
 var code = 0;
 code = event.keyCode;
 if (code==13)
  document.townform.submit()
}

function initcat(){
 if (document.townform.linksearch.value != ""){
  document.townform.catsearch.value = ""
 }
}

function initlink(){
 if (document.townform.catsearch.value != ""){
  document.townform.linksearch.value = ""
 }
}

function quickOnEnter(event){ 
 var code = 0;
 code = event.keyCode;
 if (code==13)
  submitquick()
}

function submitquick(){
document.quickform.submit()
}

