
﻿
attachEventHandler(window,"load",loadWorldPayImages);function loadWorldPayImages(){var worldPayCell=document.getElementById("cellWorldPay");addCard(worldPayCell,"WP_ECMC.gif","http://www.mastercard.com/","MasterCard");addCard(worldPayCell,"WP_JCB.gif","http://www.jcbusa.com/","JCB");addCard(worldPayCell,"WP_MAESTRO.gif","http://www.maestrocard.com/","Maestro");addCard(worldPayCell,"WP_SOLO_GB.gif","http://www.solocard.co.uk/","Solo");addCard(worldPayCell,"WP_VISA.gif","http://www.visa.com/","Visa");addCard(worldPayCell,"WP_VISA_ELECTRON.gif","http://www.visa.com/","Visa Electron");var breakElement=document.createElement("br");worldPayCell.appendChild(breakElement);addCard(worldPayCell,"poweredByWorldPay.gif","http://www.worldpay.com/","Worldpay");}
function addCard(worldPayCell,imageName,linkUrl,cardName){var linkElement=document.createElement("a");linkElement.setAttribute("href",linkUrl);worldPayCell.appendChild(linkElement);var imageElement=document.createElement("img");imageElement.setAttribute("src","/images/worldpay/"+imageName);imageElement.setAttribute("alt",cardName);imageElement.setAttribute("border","0");linkElement.appendChild(imageElement);worldPayCell.appendChild(document.createTextNode(" "));}