	
	<!--

  var _skipCreditCardCheck = false;

		function chkFullRegistration(theForm)
		{
		//alert("called")
			
		  if (theForm.cboPrefixID.selectedIndex < 0)
		  {
		    alert("Please select one of the \"Prefix\" options.");
		    theForm.cboPrefixID.focus();
		    return (false);
		  }

		  if (theForm.cboPrefixID.selectedIndex == 0)
		  {
		    alert("The first \"Prefix\" option is not a valid selection.  Please choose one of the other options.");
		    theForm.cboPrefixID.focus();
		    return (false);
		  }
					  
		  if (theForm.txtFirstname.value == "")
		  {
		    alert("Please enter a value for the \"First Name\" field.");
		    theForm.txtFirstname.focus();
		    return (false);
		  }


		  if (theForm.txtFirstname.value.length > 20)
		  {
		    alert("Please enter at most 20 characters in the \"First Name\" field.");
		    theForm.txtFirstname.focus();
		    return (false);
		  }

		  if (theForm.txtLastname.value == "")
		  {
		    alert("Please enter a value for the \"Last Name\" field.");
		    theForm.txtLastname.focus();
		    return (false);
		  }

		  if (theForm.txtLastname.value.length > 20)
		  {
		    alert("Please enter at most 20 characters in the \"Last Name\" field.");
		    theForm.txtLastname.focus();
		    return (false);
		  }
			
		  if (theForm.cboUserTypeID.selectedIndex < 0)
		  {
		    alert("Please select one of the \"User Type\" options.");
		    theForm.cboUserTypeID.focus();
		    return (false);
		  }

		  if (theForm.cboUserTypeID.selectedIndex == 0)
		  {
		    alert("The first \"User Type\" option is not a valid selection.  Please choose one of the other options.");
		    theForm.cboUserTypeID.focus();
		    return (false);
		  }
		  
        if( theForm.cboDegreeTypeID.value.length == 0 )
        {
          alert( "Please select one of the \"Degree Type\" options." );
          theForm.cboDegreeTypeID.focus();
          return( false );
        }         		  

		  
          if (theForm.cboUserTypeID.value == 4){
			if (theForm.cboMedicalSpecialtyID.selectedIndex < 0)
		 	 {
		  	  alert("Please select one of the \"Medical Specialty\" options.");
		 	   theForm.cboMedicalSpecialtyID.focus();
		 	   return (false);
			  }

			  if (theForm.cboMedicalSpecialtyID.selectedIndex == 0)
			  {
			    alert("The first \"Medical Specialty\" option is not a valid selection.  Please choose one of the other options.");
			    theForm.cboMedicalSpecialtyID.focus();
			    return (false);
			  }
	
		  }

			  
		  
					  
		  if (theForm.cboStateOfLicensureID.value == "")
		  {
		    alert("Please enter a value for the \"State Of Licensure\" field.");
		    theForm.cboStateOfLicensureID.focus();
		    return (false);
		  }

		  
		  if (theForm.txtAddress.value == "")
		  {
		    alert("Please enter a value for the \"Address\" field.");
		    theForm.txtAddress.focus();
		    return (false);
		  }

		  if (theForm.txtAddress.value.length > 40)
		  {
		    alert("Please enter at most 40 characters in the \"Address\" field.");
		    theForm.txtAddress.focus();
		    return (false);
		  }

		  if (theForm.txtCity.value == "")
		  {
		    alert("Please enter a value for the \"City\" field.");
		    theForm.txtCity.focus();
		    return (false);
		  }

		  if (theForm.txtCity.value.length > 40)
		  {
		    alert("Please enter at most 40 characters in the \"City\" field.");
		    theForm.txtCity.focus();
		    return (false);
		  }

      if (theForm.cboCountryID.selectedIndex == 0 || theForm.cboCountryID.value == 'United States')
      {
        if( theForm.txtState.selectedIndex == 0 )
        {
          alert( "Please select a \"State (US only)\" or change \"Country\"." );
          theForm.txtState.focus();
          return( false );
        }         		  
      }
      else
      {
  		  if (theForm.txtStateOutsideUS.value == "")
  		  {
  		    alert("Please enter a value for the \"State/Province/County\" field.");
  		    theForm.txtStateOutsideUS.focus();
  		    return (false);
  		  }
  
  		  if (theForm.txtStateOutsideUS.value.length > 40)
  		  {
  		    alert("Please enter amaximun of 40 characters in the \"State/Province/County\" field.");
  		    theForm.txtStateOutsideUS.focus();
  		    return (false);
  		  }
      }

		  if (theForm.txtZipcode.value == "")
		  {
		    alert("Please enter a value for the \"Zip/Postal Code\" field.");
		    theForm.txtZipcode.focus();
		    return (false);
		  }

		  if (theForm.txtZipcode.value.length < 5)
		  {
		    alert("Please enter at least 5 characters in the \"Zip/Postal Code\" field.");
		    theForm.txtZipcode.focus();
		    return (false);
		  }

		  if (theForm.txtZipcode.value.length > 10)
		  {
		    alert("Please enter at most 10 characters in the \"Zip/Postal Code\" field.");
		    theForm.txtZipcode.focus();
		    return (false);
		  }
					  
		  if (theForm.cboCountryID.selectedIndex < 0)
		  {
		    alert("Please select one of the \"Country\" options.");
		    theForm.cboCountryID.focus();
		    return (false);
		  }

		  if (theForm.cboCountryID.selectedIndex == 0)
		  {
		    alert("The first \"Country\" option is not a valid selection.  Please choose one of the other options.");
		    theForm.cboCountryID.focus();
		    return (false);
		  }
					  
		  if (theForm.txtPhone.value == "")
		  {
		    alert("Please enter a value for the \"Phone\" field.");
		    theForm.txtPhone.focus();
		    return (false);
		  }

		  if (theForm.txtPhone.value.length < 7)
		  {
		    alert("Please enter at least 7 characters in the \"Phone\" field.");
		    theForm.txtPhone.focus();
		    return (false);
		  }

		  if (theForm.txtPhone.value.length > 16)
		  {
		    alert("Please enter at most 16 characters in the \"Phone\" field.");
		    theForm.txtPhone.focus();
		    return (false);
		  }

		  var checkOK = "0123456789-/-() \t\r\n\f";
		  var checkStr = theForm.txtPhone.value;
		  var allValid = true;
		  for (i = 0;  i < checkStr.length;  i++)
		  {
		    ch = checkStr.charAt(i);
		    for (j = 0;  j < checkOK.length;  j++)
		      if (ch == checkOK.charAt(j))
		        break;
		    if (j == checkOK.length)
		    {
		      allValid = false;
		      break;
		    }
		  }
		  if (!allValid)
		  {
		    alert("Please enter only digit, whitespace and \"/-()\" characters in the \"Phone\" field.");
		    theForm.txtPhone.focus();
		    return (false);
		  }

		  var checkOK = "0123456789-/-() \t\r\n\f";
		  var checkStr = theForm.txtFax.value;
		  var allValid = true;
		  for (i = 0;  i < checkStr.length;  i++)
		  {
		    ch = checkStr.charAt(i);
		    for (j = 0;  j < checkOK.length;  j++)
		      if (ch == checkOK.charAt(j))
		        break;
		    if (j == checkOK.length)
		    {
		      allValid = false;
		      break;
		    }
		  }
		  if (!allValid)
		  {
		    alert("Please enter only digit, whitespace and \"/-()\" characters in the \"Fax\" field.");
		    theForm.txtFax.focus();
		    return (false);
		  }

		  if (theForm.txtEmail.value == "")
		  {
		    alert("Please enter a value for the \"E-Mail\" field.");
		    theForm.txtEmail.focus();
		    return (false);
		  }

		  if (test(theForm.txtEmail.value) == false){
			alert("Please enter a valid email address");
		    theForm.txtEmail.focus();
		    return (false);
		  }
					  
		  if (theForm.txtEmail.value.length > 100)
		  {
		    alert("Please enter at most 50 characters in the \"E-Mail\" field.");
		    theForm.txtEmail.focus();
		    return (false);
		  }

		  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ0123456789-_@-.";
		  var checkStr = theForm.txtEmail.value;
		  var allValid = true;
		  for (i = 0;  i < checkStr.length;  i++)
		  {
		    ch = checkStr.charAt(i);
		    for (j = 0;  j < checkOK.length;  j++)
		      if (ch == checkOK.charAt(j))
		        break;
		    if (j == checkOK.length)
		    {
		      allValid = false;
		      break;
		    }
		  }
		  if (!allValid)
		  {
		    alert("Please enter only letter, digit and \"_@-.\" characters in the \"E-Mail\" field.");
		    theForm.txtEmail.focus();
		    return (false);
		  }
					  
// BEGIN USERNAME		  
	if(theForm.hdnAction.value != "UPGRADE_PREREG"){		  
			if (theForm.txtUsername.value == "")
			{
			  alert("Please enter a value for the \"User Name\" field.");
			  theForm.txtUsername.focus();
			  return (false);
			}

			if (theForm.txtUsername.value.length < 5)
			{
			  alert("Please enter at least 5 characters in the \"User Name\" field.");
			  theForm.txtUsername.focus();
			  return (false);
			}

			if (theForm.txtUsername.value.length > 10)
			{
			  alert("Please enter at most 10 characters in the \"User Name\" field.");
			  theForm.txtUsername.focus();
			  return (false);
			}

			var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ0123456789-";
			var checkStr = theForm.txtUsername.value;
			var allValid = true;
			for (i = 0;  i < checkStr.length;  i++)
			{
			  ch = checkStr.charAt(i);
			  for (j = 0;  j < checkOK.length;  j++)
			    if (ch == checkOK.charAt(j))
			      break;
			  if (j == checkOK.length)
			  {
			    allValid = false;
			    break;
			  }
			}
			if (!allValid)
			{
			  alert("Please enter only letter and digit characters in the \"User Name\" field.");
			  theForm.txtUsername.focus();
			  return (false);
			}
						  
			if (theForm.txtPassword.value == "")
			{
			  alert("Please enter a value for the \"Password\" field.");
			  theForm.txtPassword.focus();
			  return (false);
			}

			if (theForm.txtPassword.value.length < 6)
			{
			  alert("Please enter at least 6 characters in the \"Password\" field.");
			  theForm.txtPassword.focus();
			  return (false);
			}

			if (theForm.txtPassword.value.length > 10)
			{
			  alert("Please enter at most 10 characters in the \"Password\" field.");
			  theForm.txtPassword.focus();
			  return (false);
			}

			var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ0123456789-";
			var checkStr = theForm.txtPassword.value;
			var allValid = true;
			for (i = 0;  i < checkStr.length;  i++)
			{
			  ch = checkStr.charAt(i);
			  for (j = 0;  j < checkOK.length;  j++)
			    if (ch == checkOK.charAt(j))
			      break;
			  if (j == checkOK.length)
			  {
			    allValid = false;
			    break;
			  }
			}
			if (!allValid)
			{
			  alert("Please enter only letter and digit characters in the \"Password\" field.");
			  theForm.txtPassword.focus();
			  return (false);
			}
						  
			if(theForm.txtPassword.value != theForm.txtPasswordAgain.value){
			  alert("The two Password fields must match.");
			  theForm.txtPasswordAgain.focus();
			  return (false);
			}
						  
			if (theForm.cboPasswordHintQuestionID.value == "")
			{
			  alert("Please enter a value for the \"Password Hint\" field.");
			  theForm.cboPasswordHintQuestionID.focus();
			  return (false);
			}

						  
			if (theForm.txtPasswordHintAnswer.value == "")
			{
			  alert("Please enter a value for the \"Password Hint Answer\" field.");
			  theForm.txtPasswordHintAnswer.focus();
			  return (false);
			}

			if (theForm.txtPasswordHintAnswer.value.length > 100)
			{
			  alert("Please enter at most 100 characters in the \"Password Hint Answer\" field.");
			  theForm.txtPasswordHintAnswer.focus();
			  return (false);
			}
		}
// END USERNAME			  
		  
		  
		  if (theForm.cboSubscriptionTypeID.selectedIndex < 0)
		  {
		    alert("Please select one of the \"Subscription Type\" options.");
		    theForm.cboSubscriptionTypeID.focus();
		    return (false);
		  }

		  if (theForm.cboSubscriptionTypeID.selectedIndex == 0)
		  {
		    alert("The first \"Subscription Type\" option is not a valid selection.  Please choose one of the other options.");
		    theForm.cboSubscriptionTypeID.focus();
		    return (false);
		  }		  
		  // validate subscription / user type selections
		  if (theForm.cboSubscriptionTypeID.value == "IR" && theForm.cboUserTypeID.value != "4"){
			alert("You can not choose this subscription type.  Only Physicians may choose the Intern/Resident subscription");
			theForm.cboSubscriptionTypeID.focus();
			return (false);
		  } 
		  
		  if( theForm.cboSubscriptionTypeID.value.indexOf("30_COMP") != 0 && CheckCreditCardInfo(theForm) == false )
		  {
		    return( false );
		  }

      if ((theForm.txtBillingAddress != undefined) && (_skipCreditCardCheck == false))
      {					  
    		  if (theForm.txtBillingAddress.value == "")
    		  {
    		    alert("Please enter a value for the \"Billing Address\" field.");
    		    theForm.txtBillingAddress.focus();
    		    return (false);
    		  }
    					  
    		  if (theForm.txtBillingAddress.value.length > 40)
    		  {
    		    alert("Please enter at most 40 characters in the \"Billing Address\" field.");
    		    theForm.txtBillingAddress.focus();
    		    return (false);
    		  }
    
    		  if (theForm.txtBillingCity.value == "")
    		  {
    		    alert("Please enter a value for the \"Billing City\" field.");
    		    theForm.txtBillingCity.focus();
    		    return (false);
    		  }
    
    		  if (theForm.txtBillingCity.value.length > 40)
    		  {
    		    alert("Please enter at most 40 characters in the \"Billing City\" field.");
    		    theForm.txtBillingCity.focus();
    		    return (false);
    		  }
    
          if (theForm.cboBillingCountryID.selectedIndex == 0 || theForm.cboBillingCountryID.value == 'United States')
          {
            if( theForm.txtBillingState.selectedIndex == 0 )
            {
              alert( "Please select a \"Billing State (US only)\" or change \"Billing Country\"." );
              theForm.txtBillingState.focus();
              return( false );
            }         		  
          }
          else
          {
      		  if (theForm.txtBillingStateOutsideUS.value == "")
      		  {
      		    alert("Please enter a value for the \"Billing State/Province/County\" field.");
      		    theForm.txtBillingState.focus();
      		    return (false);
      		  }
      
      		  if (theForm.txtBillingStateOutsideUS.value.length > 40)
      		  {
      		    alert("Please enter amaximun of 40 characters in the \"Billing State/Province/County\" field.");
      		    theForm.txtBillingState.focus();
      		    return (false);
      		  }
          }
    
    		  if (theForm.txtBillingZipcode.value == "")
    		  {
    		    alert("Please enter a value for the \"Billing Zip/Postal Code\" field.");
    		    theForm.txtBillingZipcode.focus();
    		    return (false);
    		  }
    
    		  if (theForm.txtBillingZipcode.value.length < 5)
    		  {
    		    alert("Please enter at least 5 characters in the \"Billing Zip/Postal Code\" field.");
    		    theForm.txtBillingZipcode.focus();
    		    return (false);
    		  }
    
    		  if (theForm.txtBillingZipcode.value.length > 10)
    		  {
    		    alert("Please enter at most 10 characters in the \"Billing Zip/Postal Code\" field.");
    		    theForm.txtBillingZipcode.focus();
    		    return (false);
    		  }
    					  
    		  if (theForm.cboBillingCountryID.selectedIndex == 0)
    		  {
    		    alert("Please select one of the \"Billing Country\" options.");
    		    theForm.cboBillingCountryID.focus();
    		    return (false);
    		  }
    		/*
    		  if (theForm.cboBillingCountryID.selectedIndex == 0)
    		  {
    		    alert("The first \"Billing Country\" option is not a valid selection.  Please choose one of the other options.");
    		    theForm.cboBillingCountryID.focus();
    		    return (false);
    		  }
    					  
    		  if (theForm.cboHearAboutUsID.selectedIndex < 0)
    		  {
    		    alert("Please select one of the \"How did you hear about us?\" options.");
    		    theForm.cboHearAboutUsID.focus();
    		    return (false);
    		  }
    		*/
    	}
		  if (theForm.cboHearAboutUsID.value == "OTHER"){
			if (theForm.txtHearAboutUs2.value == "")
			{
			  alert("Please enter where you heard about us.");
			  theForm.txtHearAboutUs2.focus();
			  return (false);
			}

			if (theForm.txtHearAboutUs2.value.length > 50)
			{
			  alert("Please enter at most 50 characters.");
			  theForm.txtHearAboutUs2.focus();
			  return (false);
			}

			
			
		  }

		  
		if (theForm.txtHearAboutUs2.value != "" && theForm.cboHearAboutUsID.value != "OTHER"){
			alert("You must select 'Other' from the dropdown box");
		 	theForm.cboHearAboutUsID.focus();
		  	return (false);	
		}

		if (theForm.chkAgree.checked != true){
			alert("Please indicate you have read and agree to the Accreditation Statement and Disclosures ");
		 	//theForm.theForm.chkAgree.focus();
		  	return (false);	
		} 
		  
		  
		  
		  
		  return (true);
		}

		function billingAddress(theCB){
			var theForm = document.frmFullRegistration
													
			//copy address info if the box is checked
			if(theCB.checked == true){
				theForm.txtBillingAddress.value = theForm.txtAddress.value
				theForm.txtBillingAddress2.value = theForm.txtAddress2.value
				theForm.txtBillingCity.value = theForm.txtCity.value
				theForm.txtBillingState.value = theForm.txtState.value
				theForm.txtBillingStateOutsideUS.value = theForm.txtStateOutsideUS.value
				theForm.txtBillingZipcode.value = theForm.txtZipcode.value
				theForm.cboBillingCountryID.selectedIndex = theForm.cboCountryID.selectedIndex
			}
			else{
				theForm.txtBillingAddress.value = ""
				theForm.txtBillingAddress2.value = ""
				theForm.txtBillingCity.value = ""
				theForm.txtBillingState.value = ""
				theForm.txtBillingStateOutsideUS.value = ""
				theForm.txtBillingZipcode.value = ""
				theForm.cboBillingCountryID.selectedIndex = ""
			}
		}
											
		//email validation
		function test(src) {
		    var emailReg = "^[\\w-_\.]*[\\w-_\.]\@[\\w]\.+[\\w]+[\\w]$";
		    var regex = new RegExp(emailReg);
		    return regex.test(src);
		}

	
	
	

	var dtCh= "/";
	var minYear=1900;
	var maxYear=2100;

	function isInteger(s){
		var i;
	    for (i = 0; i < s.length; i++){   
	        // Check that current character is number.
	        var c = s.charAt(i);
	        if (((c < "0") || (c > "9"))) return false;
	    }
	    // All characters are numbers.
	    return true;
	}

	function stripCharsInBag(s, bag){
		var i;
	    var returnString = "";
	    // Search through string's characters one by one.
	    // If character is not in bag, append to returnString.
	    for (i = 0; i < s.length; i++){   
	        var c = s.charAt(i);
	        if (bag.indexOf(c) == -1) returnString += c;
	    }
	    return returnString;
	}

	function daysInFebruary (year){
		// February has 29 days in any year evenly divisible by four,
	    // EXCEPT for centurial years which are not also divisible by 400.
	    return (((year % 4 == 0) && ( (!(year % 100 == 0)) || (year % 400 == 0))) ? 29 : 28 );
	}
	function DaysArray(n) {
		for (var i = 1; i <= n; i++) {
			this[i] = 31
			if (i==4 || i==6 || i==9 || i==11) {this[i] = 30}
			if (i==2) {this[i] = 29}
	   } 
	   return this
	}

	function isDate(dtStr){
		var daysInMonth = DaysArray(12)
		var pos1=dtStr.indexOf(dtCh)
		var pos2=dtStr.indexOf(dtCh,pos1+1)
		var strMonth=dtStr.substring(0,pos1)
		var strDay=dtStr.substring(pos1+1,pos2)
		var strYear=dtStr.substring(pos2+1)
		strYr=strYear
		if (strDay.charAt(0)=="0" && strDay.length>1) strDay=strDay.substring(1)
		if (strMonth.charAt(0)=="0" && strMonth.length>1) strMonth=strMonth.substring(1)
		for (var i = 1; i <= 3; i++) {
			if (strYr.charAt(0)=="0" && strYr.length>1) strYr=strYr.substring(1)
		}
		month=parseInt(strMonth)
		day=parseInt(strDay)
		year=parseInt(strYr)
		if (pos1==-1 || pos2==-1){
			alert("The date format should be : mm/dd/yyyy")
			return false
		}
		if (strMonth.length<1 || month<1 || month>12){
			alert("Please enter a valid month")
			return false
		}
		if (strDay.length<1 || day<1 || day>31 || (month==2 && day>daysInFebruary(year)) || day > daysInMonth[month]){
			alert("Please enter a valid day")
			return false
		}
		if (strYear.length != 4 || year==0 || year<minYear || year>maxYear){
			alert("Please enter a valid 4 digit year between "+minYear+" and "+maxYear)
			return false
		}
		if (dtStr.indexOf(dtCh,pos2+1)!=-1 || isInteger(stripCharsInBag(dtStr, dtCh))==false){
			alert("Please enter a valid date")
			return false
		}
	return true
	}

function initMedicalSpecialty(){

	if (document.frmFullRegistration.cboUserTypeID.value == 4){
		document.frmFullRegistration.cboMedicalSpecialtyID.disabled = false;	
	}
	else{
		document.frmFullRegistration.cboMedicalSpecialtyID.disabled = true;	
	}

}
function SetSubscriptionType(sb){
	with(document.frmFullRegistration){
		var d = sb.value.indexOf("30_COMP") == 0; 
		cboCreditCardID.disabled = txtCardholder.disabled = txtCreditCardNumber.disabled = txtExpirationDate.disabled = d;
		var display = d ? "none" : "inline";
		document.getElementById("scct").style.display = document.getElementById("sccn").style.display = document.getElementById("schn").style.display = document.getElementById("sed").style.display = display;
	}
}
   function CheckCreditCardInfo(theForm)
   {
      if (_skipCreditCardCheck == true)
      {
        return(true);
      }
      
		  if (theForm.cboCreditCardID.selectedIndex < 0)
		  {
		    alert("Please select one of the \"Credit Card\" options.");
		    theForm.cboCreditCardID.focus();
		    return (false);
		  }

		  if (theForm.cboCreditCardID.selectedIndex == 0)
		  {
		    alert("The first \"Credit Card\" option is not a valid selection.  Please choose one of the other options.");
		    theForm.cboCreditCardID.focus();
		    return (false);
		  }
					  
		  if (theForm.txtCardholder.value == "")
		  {
		    alert("Please enter a value for the \"Cardholder Name\" field.");
		    theForm.txtCardholder.focus();
		    return (false);
		  }

		  if (theForm.txtCardholder.value.length > 50)
		  {
		    alert("Please enter at most 50 characters in the \"Cardholder Name\" field.");
		    theForm.txtCardholder.focus();
		    return (false);
		  }
					  
		  if (theForm.txtCreditCardNumber.value == "")
		  {
		    alert("Please enter a value for the \"Credit Card Number\" field.");
		    theForm.txtCreditCardNumber.focus();
		    return (false);
		  }

		  if (theForm.txtCreditCardNumber.value.length > 16)
		  {
		    alert("Please enter at most 16 characters in the \"Credit Card Number\" field.");
		    theForm.txtCreditCardNumber.focus();
		    return (false);
		  }

		  var dateReg = /\d{2}\/\d{4}/;
		  if (!dateReg.test(theForm.txtExpirationDate.value)) {
			theForm.txtExpirationDate.focus();
			alert("Please enter a valid \"Expiration Date\".");
			return (false);
		  }
   }

function setCreditCardCheck(flag)
{
  _skipCreditCardCheck = flag;
}
	//-->
