var quotations = new Array()
quotations[0]= '<table><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="txt"><em>"From sales to support, I could not ask for a more desirable experience. Stellar!  Five Star!  Speechless!"</em></td></tr><tr><td height="2" colspan="2"></td></tr><tr><td colspan="2" height="4"></td></tr><tr><td colspan="2" class="publicationtext"><strong>Mr. Courtney Swanagain , </strong><br />Swanagain Elite Enterprises, USA </td></tr></table>'

quotations[1]= '<table><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="txt"><em>"Cyberoam maximizes ROI. We are fully satisfied with Cyberoam Unified Threat Management solution."</em></td></tr><tr><td height="2" colspan="2"></td></tr><tr><td colspan="2" height="4"></td></tr><tr><td colspan="2" class="publicationtext"><strong>Mr. Avnesh Jain, </strong><br />Hero Honda Motors Limited </td></tr></table>'

quotations[2]= '<table><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="txt"><em>"It is a one stop Internet security solution that we have always been looking for."</em></td></tr><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="publicationtext"><strong>Anuradha Iyer, </strong><br />Symbiois Institute of Management Studies, India</td></tr><tr><td colspan="2" height="16"></td></tr></table>'

quotations[3]= '<table><tr><td colspan="2" height="2"></td></tr><tr><td height="2"></td></tr><tr><td colspan="2" class="txt"><em>"Cyberoam UTM was a robust appliance and the post-sales support is prompt"</em></td></tr><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="publicationtext"><strong>Mr. K.S. AsraphAli, </strong><br />Wade Adams (Middle East) Limited</td></tr><tr><td colspan="2" height="16"></td></tr></table>'

quotations[4]= '<table><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="txt"><em>"Cyberoam is an ideal fit, One Box solution for our total, connectivity, productivity and security needs."</em></td></tr><tr><td colspan="2" class="publicationtext"><strong>Mr. Jaweed Patel, </strong><br />ARBASCO, Saudi Arabia </td></tr></table>'

quotations[5]= '<table><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="txt"><em>"Unified control and the use of identity in Cyberoam are responsible for swinging the final purchase decision in its favor."</em></td></tr><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="publicationtext"><strong>Mr. Leonides Tolentino,</strong><br />CDO-Foodsphere, Philippines </td></tr></table>'

quotations[6]= '<table><tr><td colspan="2" class="txt"><em>"Cyberoam’s content security is comprehensive. It not only boosts connectivity and productivity, but also prevents Internet bandwidth wastage."</em></td></tr><tr><td colspan="2" class="publicationtext"><strong>Mr. Michael Tully,</strong><br />Mazita Tiles, South Africa </td></tr></table>'

quotations[7]= '<table><tr><td colspan="2" class="txt"><em>"Cyberoam comes highly recommended and offers all that a healthcare organisation needs. I would say it’s a dream product for us."</em></td></tr><tr><td colspan="2" class="publicationtext"><strong>Mr. Syed Ali,</strong><br />Royal Hospital for Neuro-Disability, UK</td></tr></table>'


function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",7000)
}

/*
function display()
{

	for(a=0;a<quotations.length;a++)
	{
		document.getElementById('quotation').innerHTML=quotations[a]
		setTimeout("display()",10000);
		break;
	}
}
*/
