<!-- ---------- GSA Quote Request pop-up ---------- -->
function spawnGSA(which) {
	var theInteractive = window.open(which,"GSAQuote","width=700,height=600,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
	theInteractive.focus();
}

<!-- -- Check form for Credit Card Security Code -- -->
function  checkSecCode(form)
    {
      if (form.SecCode.value.length < 3) 
          {
            alert("You must enter a valid credit card security code! See instructions for more information.");
            return false;	
          }
      return true;
    }

<!-- ---------- CVV2 pop-up ---------- -->
function spawnCVV2(which) {
	var theInteractive = window.open(which,"CVV2","width=670,height=475,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
	theInteractive.focus();
}
