<!--
var theImages = new Array()
var theURLS = new Array()
var theALTS = new Array()

// Parameters= nodisplay:0 = Able to pick from all options in array 
//						 1 = Cannot pick Asset Based Lending
//					  	 2 = Cannot pick COD Enhancement Services
//					  	 3 = Cannot pick Commercial Term Loans
//					  	 4 = Cannot pick Export Credit Agency Financing
//					  	 5 = Cannot pick Franchise Financing
//					  	 6 = Cannot pick Receivables Management Services
function showBanner(nodisplay){
	theImages[0] = '/imgs/en/bnr_freeanalysis.jpg'
	theURLS[0] = '/contact/index.html'			
	theALTS[0] = 'Video - We Move Mail'			
	theImages[1] = '/imgs/en/bnr_lookingforsolutions.jpg'
	theURLS[1] = '/industry/index.html'			
	theALTS[1] = 'Industry Solutions'
	theImages[2] = '/imgs/en/bnr_notsureifyouqualify.jpg'
	theURLS[2] = '/services/qualified.html'			
	theALTS[2] = 'Qualified Mail'			


	
	var p = theImages.length;
	
	var preBuffer = new Array()
	for (i = 0; i < p; i++){
	   preBuffer[i] = new Image()
	   preBuffer[i].src = theImages[i]
	}
	var whichImage = Math.round(Math.random()*(p-1));

	//if the random page picked is the same as the page that called this function, pick one above or below it
	if (whichImage == (nodisplay-1)){
	    if (whichImage > 1)
			whichImage--;
		else
			whichImage++;		
	}

	//if the random page picked is 0, then we increment this because asset-based lending image file is not currently available
	if (whichImage == 0){
	    whichImage++;
	}
		
	document.write('<a href="'+theURLS[whichImage]+'"><img src="'+theImages[whichImage]+'" alt="'+theALTS[whichImage]+'" width="183"></a>');

}






// Rotating banner on the home page
function showImage(){
	theImages[0] = '/imgs/en/bnr_getafreeanalysis.jpg'
	theURLS[0] = '/contact/index.html'			
	theALTS[0] = 'Get a Free Analysis and Quote to start your mail services today - Request a Quote'			
	theImages[1] = '/imgs/en/bnr_lookingforsolutions.jpg'
	theURLS[1] = '/industry/index.html'			
	theALTS[1] = 'Industry Solutions'
	theImages[2] = '/imgs/en/bnr_notsureifyouqualify.jpg'
	theURLS[2] = '/services/qualified.html'			
	theALTS[2] = 'Qualified Mail'			

	
	
	var p = theImages.length;
	
	var preBuffer = new Array()
	for (i = 0; i < p; i++){
	   preBuffer[i] = new Image()
	   preBuffer[i].src = theImages[i]
	}
	var whichImage = Math.round(Math.random()*(p-1));
		
	document.write('<a href="'+theURLS[whichImage]+'"><img src="'+theImages[whichImage]+'" alt="'+theALTS[whichImage]+'"border="0"></a>');
}

-->

