function somequotes(){
//Create an array whic will hold quotes
var quotes=new Array()

//quotes[0]='<img src="images/mp3.jpg" width="73" height="110" border="0" align="left">Order Or Renew Your Domain Name With Detreoit, And Enter To Win A <b>FREE MP3 Player!</b></p> <p><a href="http://www.detreoit.com/order.html"><br><br>Click For Details..</a>'
quotes[0]='<img src="imagess/logitech.jpg" width="50" height="50" border="0" align="left">Receive 50% discount with your hosting package of more than 50 MB!<br><br>Sign up and get  <strong><font color="FF4200">75% Discount</font></strong> before 8th Aug on package >200 MB<br><br><a href="special.html">Click For Details.. </a><br>'

var whichquote=Math.floor(Math.random()*(quotes.length));//which quote to display

var fontstylestart='<font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#000000"><span style="letter-spacing: 0">';
var fontstyleend='</span></font>'
document.write(fontstylestart+quotes[whichquote]+fontstyleend)
}
//usage
//Put above function in the head.
//Call the function where you want quotes to be displayed
somequotes();

