﻿// display the 'better business bureau' certification popup window.
function Rcertify(bbbID) { 
    // Added by:- Chetan Sawant
    // Date:- 06/05/2009
    // Added code to resize the BBB popup window
	
	
	// 06/17/2009 LJordan  - Added bbbID parameter to display BBB language based on check brand
	if( null == bbbID || typeof bbbID == 'undefined' ){bbbID = 11000341} //if nothing is passed to Rcertify, set default ID = 4Checks
	
    popupWin = window.open('http://www.bbbonline.org/cks.asp?id='+bbbID, 
    'Participant', 'location=yes,scrollbars=yes,width=600,height=600,resizable=yes') 
    window.name = 'opener'; 
    
    // Added by:- Chetan Sawant
    // Date:- 06/01/2009
    // Added code for page tracking onlick of BBB option.
    pageTracker._link(this.href);
    
    return false;
} 
