<!--



var Quotation=new Array() 


Quotation[0]="<h4>Testimonials</h4><div class='headerquotes'>'Mamut has been a member of BASDA since 2000 because of BASDA's unique position in the UK software business landscape, its interaction with UK government and the network opportunity it provides with our peers in the UK. In addition, BASDA's engagement regarding industry issues and defining standards is unique, even in a European perspective.'</div><br><div class='headerquotessigs'>Eilert Hanoa, CEO, Mamut ASA</div>";

Quotation[1]="<h4>Testimonials</h4><div class='headerquotes'>'I am encouraged to see that BASDA is moving forward into strategic areas like the Green agenda, modernisation of the taxation system and other issues that concern CEOs and senior management.' </div><br><div class='headerquotessigs'>Mark Thompson, MD, COA Solutions Ltd</div>";

Quotation[2]="<h4>Testimonials</h4><div class='headerquotes'>'BASDA's ability to clarify industry issues and set standards has not only informed and educated our customers and prospects, but also initiated many sales opportunities, for example in the areas of EMU and eBusiness'. </div><br><div class='headerquotessigs'>Peter Robertshaw - Marketing Director, Strategic Thought Group</div>";

Quotation[3]="<h4>Testimonials</h4><div class='headerquotes'>'Proteus wants to be in at the start of the BASDA Logistics SIG to work together with other sector solution providers on the key issues affecting the warehousing and logistics industry, ultimately for the benefit of our customers.'</div><br><div class='headerquotessigs'>Howard Turvey, Managing Director, Proteus Software Limited</div>";

Quotation[4]="<h4>Testimonials</h4><div class='headerquotes'>'BASDA has proved to be an invaluable interpreter of legal and regulatory changes and the impact of these requirements on our software. Through the use of collaborative working parties, where Access may appear as a proactive contributor, or a more passive benefactor, we attain industry specific knowledge at a low cost of acquisition.  This allows us to focus on what's really important - providing the best software solutions for our clients.'</div><div class='headerquotessigs'>Kevin Misselbrook, Customer Services Director, Access Accounting</div>";

Quotation[5]="<h4>Testimonials</h4><div class='headerquotes'>'The influence over HMRC never ceases to amaze me and having the ability to influence change is hard to quantify in monetary terms but I know this involvement only helps top enhance my bottom line.'</div><br><div class='headerquotessigs'>Alan Snell, Group CEO, KCS - Total Human Resource Solution Providers</div>";

Quotation[6]="<h4>Testimonials</h4><div class='headerquotes'>'The benefit to IMPAQ of being a BASDA member is that we value their insight in promoting standards and the connections they facilitate with other BASDA members. We also appreciate the training and networking opportunities provided and recently started a blog as a result of what we learned at a BASDA Marketing event.'</div><br><div class='headerquotessigs'>Frank Bennett, Business Development Manager IMPAQ Business Solutions Limited</div>";

Quotation[7]="<h4>Testimonials</h4><div class='headerquotes'>'I am a great believer in not re-inventing the wheel, so I find BASDA meetings an excellent opportunity to meet with other CEOs and share experiences and best practice.'</div><br><div class='headerquotessigs'>Geoff Griffiths, Managing Director, Topaz Software</div>";



var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
var quotesDiv = document.getElementById('quotes');

function showQuotation()
{
	quotesDiv.innerHTML = Quotation[whichQuotation++];
	if (whichQuotation > 7) whichQuotation = 0;
}

window.setInterval(showQuotation, 5000);

//-->

/*<script> 
var whichquote=Math.round(Math.random())*3 
if (whichquote<=1) 
document.write('"<img src="http://yourdomain.com/image1.gif">"') 
else if(whichquote<=2) 
document.write('"<img src="http://yourdomain.com/image2.gif">"') 
else if(whichquote<=3) 
document.write('"<img src="http://yourdomain.com/image3.gif">"') 
</script> */

