function UGC_WorldPayCreditCardImagesResize()
{
   
    for (i = 0; i < document.images.length; i++)
    {
        ImageObj = document.images[i];
        Index = ImageObj.src.indexOf('worldpay.com');
        if (Index > 0)
        {
            ImageObj.height = ImageObj.height * 0.75;
            ImageObj.width = ImageObj.width * 0.75;
        }
    }
}

