var quotations = new Array()
quotations[0]= '<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[1]= '<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[2]= '<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[3]= '<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[4]= '<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>'

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;
	}
}
*/