function rand1(n)
{
	return(Math.floor(Math.random() * n + 1));
}
function showmsg()
{
	var random_msg1 = new Array();
	random_msg1[1] = "<table cellpadding='0' cellspacing='0' border='0' valign='top'><tr><td>\"\I used the 5000 rupees from my first Janalakshmi loan for my children's education. The second loan of Rs.15,000.00 has given me a new lease of life, as it enabled me to set up a small cycle shop.\"\ &#45; <b>Amuda, 33</b></td></tr></table>";
	
	random_msg1[2] = "<table cellpadding='0' cellspacing='0' border='0' valign='top'><tr><td>\"\My second loan from Janalakshmi helped me make all the repairs that my house has needed for a very long time. Now, the education of my daughters is my top priority.\"\ &#45; <b>Mala, 27</b></td></tr></table>";

	random_msg1[3] = "<table cellpadding='0' cellspacing='0' border='0' valign='top'><tr><td>\"\I was able to contribute to my grandchildren's school fees, with my first Janalakshmi loan. And the second loan of Rs.15,000.00 helped us build a bathroom for our house.\"\ &#45; <b>Parvati, 55</b></td></tr></table>";

	var x = rand1(random_msg1.length-1);

	var h = document.getElementById("dycont");
	var quotetxt  = random_msg1[x];
	h.innerHTML = quotetxt;
}
