var quotations = new Array()
quotations[0]= '<table><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="txt"><em>"Cyberoam maximiza ROI. Estamos completamente satisfechos con la solución de Administración Unificada de Amenazas de Cyberoam"</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>"Es la solución de seguridad en Internet de un solo paso que siempre habíamos buscado"</em></td></tr><tr><td colspan="2" height="2"></td></tr><tr><td colspan="2" class="publicationtext"><strong>Anuradha Iyer, </strong><br />Instituto Symbiois de Estudios de Administración, 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>"Es la solución de seguridad en Internet de un solo paso que siempre habíamos buscado"</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;
	}
}
*/