<!--
var quotations = new Array()
quotations[0] = "<a href = 'http://www.argos.com' title='Get Free Link to your store'  target='_blank'>ARGOS CATALOGUE</a>";
quotations[1] = "<a href = 'http://www.johnlewis.com' title='Get Free Link to your store'  target='_blank'>JOHN LEWIS</a>";
quotations[2] = "<a href = 'http://www.bentalls.com' title='Get Free Link to your store'  target='_blank'>BENTALLS</a>";
quotations[3] = "<a href = 'http://www.chadwicks.com' title='Get Free Link to your store'  target='_blank'>CHADWICK'S</a>";
quotations[4] = "<a href = 'http://www.kennethcole.com' title='Get Free Link to your store'  target='_blank'>KENNETH COLE</a>";
quotations[5] = "<a href = 'http://www.dyson.co.uk' title='Get Free Link to your store'  target='_blank'>DYSON CLEANING</a>";
quotations[6] = "<a href = 'http://www.marksandspencer.com' title='Get Free Link to your store'  target='_blank'>MARKS & SPENCER</a>";
quotations[7] = "<a href = 'http://www.comet.co.uk' title='Get Free Link to your store'  target='_blank'>COMET</a>";
quotations[8] = "<a href = 'http://www.avon.com' title='Get Free Link to your store'  target='_blank'>AVON COSMETICS</a>";
quotations[9] = "<a href = 'http://www.peacocks.co.uk' title='Get Free Link to your store'  target='_blank'>PEACOCKS</a>";
quotations[10] = "<a href = 'http://www.discountworld.com' title='Get Free Link to your store'  target='_blank'>DISCOUNTWORLD</a>";
quotations[11] = "<a href = 'http://www.premierman.co.uk' title='Get Free Link to your store'  target='_blank'>PREMIERMAN</a>";
quotations[12] = "<a href = 'http://www.cottontraders.co.uk' title='Get Free Link to your store'  target='_blank'>COTTONTRADERS</a>";
quotations[13] = "<a href = 'http://www.selfridges.com' title='Get Free Link to your store'  target='_blank'>SELFRIDGES</a>";
function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotations1').innerHTML=quotations[a]
setTimeout("display()",2000)
}

//-->

