function listads() {

// num is the starting point for the count, DO NOT CHANGE THIS.

num=1; 

// totalads is the total number of ads being listed.

totalads = 8; 

// adsimage is the array that defines each image for your ads.
// Make sure the image is no greater than 125 pixels in width.

adsimage = new Array();
adsimage[1] = "ads/125_silvas.gif";
adsimage[2] = "ads/extacy-125x125.gif";
adsimage[3] = "ads/dcosta-125x125.gif";
adsimage[4] = "ads/jacorre-125x125.gif";
adsimage[5] = "ads/lusobeat-musicstore-125x125.gif";
adsimage[6] = "ads/125x125-sls.jpg";
adsimage[7] = "ads/125_voz.gif";
adsimage[8] = "ads/125_ptimes.gif";
adsimage[9] = "ads/advertise-with-us.gif";

// adslink is the array that defines the sponsor's website link corresponding to the image.

adslink = new Array();
adslink[1] = "http://www.silvaadvertising.com";
adslink[2] = "http://www.extacyboutique.com";
adslink[3] = "http://www.dcostaelectric.com";
adslink[4] = "http://www.jacorre.com";
adslink[5] = "http://www.lusobeat.com/store.html";
adslink[6] = "http://www.sidelinesoccer.com";
adslink[7] = "http://www.avozdeportugal.com";
adslink[8] = "http://www.portuguesetimes.com";
adslink[9] = "http://www.lusobeat.com/advertise.html";

// Below is what actually writes the images and their corresponding links to the page, DO NOT EDIT THIS.

while (num<=totalads)
{
document.write ('<p><a href="'+adslink[num]+'" target=_blank><img src="'+adsimage[num]+'" border=0 /></a></p>');
num++;
}

}

listads()