function SubmitSearchSelect(idxnum)
{
  if (idxnum < 3 && document.search_select.elements[idxnum].value != '') {
	var y = idxnum;
    while (y < 3) {
    y++;
      if (document.search_select.elements[y].selectedIndex != undefined) {
      document.search_select.elements[y].selectedIndex = 0;
      }
    }
  }
document.search_select.action = "http://www.biggerbras.com/catalog/bras-lingerie-swimwear.cfm"
document.search_select.target = "_top"
document.search_select.submit();
};

function ssvalidate(myform) {
// Checking if at least one item is selected. Or not.
var stop = false;

  if (myform.descrb1.type == 'select-one' || myform.descrb1.type == 'select-multiple') {
  // using select menu
  
    if (myform.descrb1.value == '') {
    var stop = true;
    }
  
  } else {
  // using checkboxes
  
  var stop = true;
  x = 0;
    if (myform.formslist.length != undefined) {
      while (stop == true && x < myform.formslist.length) {
        if (myform.formslist[x].checked) {
        var stop = false;
        }
      x++;
      }
    } else {
    var stop = false;
    }
    
  }
  
  if (stop == true){
  var myalert = 'Please select a ' + myform.whichmenu.value + '.'
  alert(myalert);
  return false;
  } else {
  return true;
  }
};