/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/

function random_imglink(){
  var myquote=new Array()
  var myperson=new Array()

  myquote[1]="As I am retiring at the end of the month, I would like to take this opportunity to thank you and all your staff for the prompt and efficient service you have given over the past 19 years that I have worked for Unilever. It has made my job easier to undertake knowing that the work would be carried out satisfactory."
  myperson[1]="R.G.Young<br>Building Services Manager<br>Unilever PLC<br>"

  myquote[2]="<i>After working with you for the past 9 years at Beechams Group, I would like to thank you for all the help you have given me here and the very pleasant and capable manner your Company has performed</i>"
  myperson[2]="R.Bartlam<br>Estates Manager<br>Beecham Group PLC<br>"

  myquote[3]="<i>Many thanks for the excellent job done, carried out with a minimum of disruption to our activities</i>"
  myperson[3]="Graham Sykes<br>London Manager<br>Royal Shakespeare Company RSC<br>"

  var ry=Math.floor(Math.random()*myquote.length)

  if (ry==0) {
       ry=1
  }
     
     document.write('<div style="position:relative;margin:30px 5px 0 5px;padding:5px;width:235px;"><div style="position:relative;padding:35px 2px 15px 1px;border:1px dotted #C0C0C0;font-size:80%;"><div style="position:absolute;top:-20px; left:-9px;"><img src="quotes-left.gif" alt="["></div><div style="margin-top:-50px;text-align:right;color:#808080;">CUSTOMER TESTIMONIAL</div><div style="text-indent: 45px;margin-top:18px;z-index:1;padding-left:3px;"><i>'+myquote[ry]+'</i></div><div style="position:relative;padding: 10px 50px 0px 0px;height:40px;margin-bottom:20px;"><div style="position:absolute;top:-10px; right:-10px;z-index:0;"><img src="quotes-right.gif" alt="]"></div><div style="margin-left:5px;">'+myperson[ry]+'</div></div></div></div>')

}

  random_imglink()
