// QR History : Javascript functions

function visitQR(){
	if (document.links.select1.options[document.links.select1.selectedIndex].value != "none") {
		location = document.links.select1.options[document.links.select1.selectedIndex].value
	}
}

function b(){
  for (var i = 0; i<document.forms['thisForm']['Contact method;required;notype'].length; i++) {
    if (document.forms['thisForm']['Contact method;required;notype'][i].checked){
      if (i == 1){
        if (document.forms['thisForm']['Phone number;optional;text-num'].value.length == 0){
          alert('Please enter a phone number.');
          return false;
        }
      }
    }
  }

  if (!validateForm(thisForm)){
    return false;
  }else{
    thisForm.isPostBack.value = 1;
    thisForm.submit();
  }
}