function popUp(URL) {
window.open(URL, '', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=300');
}

function popUpWH(URL, width, height) {
window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width,height');
}

function popUpWH_rs(URL, width, height) {
    window.open(URL, '', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + width + ',height=' + height);
}

function popUpContact() {
window.open("ContactBnaPlus.aspx", '', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0,450,300');
}

function clearDefault(el) {
  if ("Search"==el.value) el.value = ""
}

