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, wi, he) {
window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + wi + ',height=' + he);
}

function popUpWHR(URL, wi, he) {
window.open(URL, '', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + wi + ',height=' + he);
}

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 = ""
}

function CloseAndRedirectParent(arg) {
  var p = window.opener;
  p.__doPostBack('AddToCart', arg);
  close();
}
