<!--VISUAL SCIENCES CODE HBX2.5 (Universal)-->
<!--COPYRIGHT 1997-2007 VISUAL SCIENCES,INC. ALL RIGHTS RESERVED. U.S.PATENT No. 6,393,479B1. MORE INFO:http://visualsciences.com/privacy-->

 /*
 * This function will remove illegal characters 
 * and replace them with empty spaces.
 *
 * a	: hbx.pn value, from where special characters will be removed
 */
function hbxStrip(a)
{
//alert("Before: "+a);

a = a.split("|").join("");
a = a.split("&").join("");
a = a.split("'").join("");
a = a.split("#").join("");
a = a.split("$").join("");
a = a.split("%").join("");
a = a.split("^").join("");
a = a.split("*").join("");
a = a.split(":").join("");
a = a.split("!").join("");
a = a.split("<").join("");
a = a.split(">").join("");
a = a.split("~").join("");
a = a.split(";").join("");
a = a.split(" ").join("+");

a = Left(a, 150);

//alert("After: "+a);
return a;

}

/*
 * This function will limit the page name to 150 characters.
 *
 * a	: hbx.pn value, from where special characters will be removed
 */
function Left(str, n)
{
   if (n <= 0)
         return "";
   else if (n > String(str).length)
         return str;
   else
         return String(str).substring(0,n);

     alert("After Left: "+String(str));    
}





var _hbEC=0,_hbE=new Array;function _hbEvent(a,b){b=_hbE[_hbEC++]=new Object();b._N=a;b._C=0;return b;}
var hbx=_hbEvent("pv");hbx.vpc="HBX0250u";hbx.gn="www35.vzw.com";



var isProduction = new RegExp(/http.*\/\/(?!stage).*\.(com|net)/).test(location.href);

//BEGIN EDITABLE SECTION
//CONFIGURATION VARIABLES

// ------- ATTENTION: ---------- //
/*		
	The following sets the hbx account number
	to the test account unless you are in
	a production environment.
	
	Account strings should be a comma delimited list of account numbers.
	
	EXAMPLE:
		"DM570118F3VN,DM570203L6VD" --> This reports to Microsites and the Global
		
		Please verify the accounts you should be reporting to and place
		the appropriate account string.
		
	VALID ACCOUNTS:
		DM570118F3VN   MICROSITES
		DM561203FPMA   F&D 
		DM570203L6VD   GLOBAL ACCOUNT
		DM57013171SD   TEST ACCOUNT

*/	
if(isProduction) hbx.acct = "DM570203L6VD;DM5612035ADD"; // <--- Change this to the appropriate PRODUCTION account string   
else hbx.acct = "DM57013171SD"; // TESTING



// ------- ATTENTION: ---------- //
/* 		
	The following sets the reporting MULTI-LEVEL CONTENT CATEGORY (mlc) for this page.	
	Content category strings should represent a hiarchy for reporting using a "/" like a URI.
	
	EXAMPLE:
		"/microsites/maxxve" --> This reports in HBX under microsites --> maxxe --> "PAGENAME"
		
		Please verify the proper content category for reporting.
*/
hbx.mlc = "/business/small business/"; // <-- Enter your MULTI-LEVEL CONTENT CATEGORY here.


// Verify values were changed.
if(hbx.acct == "DMxxxxxx") alert("HBX: Please enter valid ACCOUNT NUMBER(S)");
if(hbx.mlc == "/channel/sitename") alert("HBX: Please enter valid MULTI-LEVEL CONTENT CATEGORY (mlc)");








// ------ You shouldn't need to change anything below this line ------ //

hbx.pn="";//PAGE NAME(S)
hbx.pndef="title";//DEFAULT PAGE NAME
hbx.ctdef="full";//DEFAULT CONTENT CATEGORY

//OPTIONAL PAGE VARIABLES
//ACTION SETTINGS
hbx.fv="";//FORM VALIDATION MINIMUM ELEMENTS OR SUBMIT FUNCTION NAME
hbx.lt="auto";//LINK TRACKING
hbx.dlf="n";//DOWNLOAD FILTER
hbx.dft="n";//DOWNLOAD FILE NAMING
hbx.elf="n";//EXIT LINK FILTER

//SEGMENTS AND FUNNELS
hbx.seg = "";//VISITOR SEGMENTATION
hbx.fnl="";//FUNNELS

//FORCE ALL TO LOWER CASE
hbx.lc="y";//LOWER CASE SETTING

//CUSTOM VARIABLES
hbx.ci="";//CUSTOMER ID
hbx.hc1="";//CUSTOM 1
hbx.hc2="";//CUSTOM 2
hbx.hc3="";//CUSTOM 3
hbx.hc4="";//CUSTOM 4
hbx.hrf="";//CUSTOM REFERRER
hbx.pec="";//ERROR CODES

//INSERT CUSTOM EVENTS

//END EDITABLE SECTION

<!--END WEBSIDESTORY CODE-->