<!--
//*******************************************************//
//                Random Banners                         //
//   by Langami   langami@bigfoot.com                    //
//   http://hem.passagen.se/fredwald/langami/index.html  //
//*******************************************************

a = 4 // a=numbers of banners
var slump = Math.random();
var talet = Math.round(slump * (a-1))+1;

function create() {

        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.alt = ''
        
}

b = new Array()
for(var i=1; i<=a; i++) { b[i] = new create() }




b[1].src    = "http://www.icc-al.org/images/wmaster/iccdesign1.gif"
b[1].href   = "http://www.icc-al.org"
b[1].width  = "468"
b[1].height = "60"
b[1].border = "0"
b[1].alt    = "ICC-WebDesign"


b[2].src    = "http://www.icc-al.org/images/wmaster/addesign1.gif"
b[2].href   = "http://www.icc-al.org"
b[2].width  = "468"
b[2].height = "60"
b[2].border = "0"
b[2].alt    = "ICC-WebDesign"

b[3].src    = "http://www.icc-al.org/images/wmaster/abcom1.gif"
b[3].href   = "http://www.abcom-al.com"
b[3].width  = "468"
b[3].height = "60"
b[3].border = "0"
b[3].alt    = "ABCOM"

b[4].src    = "http://www.abcom-al.com/image/abcom.gif"
b[4].href   = "http://www.abcom-al.com"
b[4].width  = "468"
b[4].height = "60"
b[4].border = "0"
b[4].alt    = "ABCOM"

var visa = "";

visa += '<a href="'+b[talet].href+'">'
visa += '<img src="'+b[talet].src+'" height='+b[talet].height
visa += ' width='+b[talet].width+' border='+b[talet].border+' alt='+b[talet].alt+'>';
visa += '</a>'

//-->
