/*
 * local.js
 * statewidepaint.com
 * STC Network Systems
 */

function dispImages(sFgColor, sBgColor, nWidth, nHeight, nBorder)
{
    var nImages = 2;
    var gasImage = new Array(nImages);
    //var gsImageList = '/images/logo_bbb_az.jpg|/images/christ_fish_blu_wht.gif|/images/logo_serv_magic_seal.jpg';
    var gsImageList = '/images/logo_bbb_az.jpg|/images/logo_serv_magic_seal.jpg';

    //
    // INITIALIZE MASTER LISTS (FROM INCLUDE FILES)
    // ENTER EACH IMAGE LOCATION AND NAME ON SEPARATE LINES 
    // WITH PIPES "|" AT END (EXCEPT LAST LINE)
    gasImage = gsImageList.split("|");

    document.write ('<DIV style="display: inline; width: ' + nWidth + 'px; height: ' + nHeight + 'px; color: '+ sFgColor +'; background-color: ' + sBgColor + ';">');
    for (i = 0; i < nImages; i++)
    {

	document.write ('<SPAN style="margin: 0 auto; display: inline; width: 100; height: 75;">');
    document.write ('<IMG bgcolor=' + sBgColor + ' width=' + nWidth + ' border=' + nBorder + ' height=' + nHeight + ' src="' + gasImage[i] + '">');
    document.write ('</SPAN>');

    }
    document.write ('</DIV>');
}

