function rand1(n)
{
	return(Math.floor(Math.random() * n + 1));
}
function showmsg()
{
	var random_msg1 = new Array();
	random_msg1[1] = "<div class=\"blktxt\" align=\"justify\">\<span class=\"heading1\"><b>Donor speak...</b></span><br />\"This is your best-ever birthday gift to me\" remarked my father - <b>Mr. Murali Krishnan</b> (Chennai based software engineer)\"</div>";
	random_msg1[2] = "<div class=\"blktxt\" align=\"justify\">\<span class=\"heading1\"><b>Donor speak...</b></span><br />\"Every year, my mother would chide me for wasting money on flowers and chocolates\", says Indira. \"This time around, she was overwhelmed\". - <b>Ms. Indira Menon</b> (Senior Manager, Investment Management Company)</div>";
	random_msg1[3] = "<div class=\"blktxt\" align=\"justify\">\<span class=\"heading1\"><b>Donor speak...</b></span><br />\Very often we are faced with the question: \"What is an appropriate gift for this occasion?\" Gifting Cash is pass&eacute; while a bouquet doesn't last long and how many statues/ flower-vases can a person have? When this query is addressed with a note of positivity; when the gift is for an occasion and helps a cause, it most certainly leaves a 'feel-good' factor - for me and for the recipient(s). The fact that True Gifts offers a wide range of services/causes for all budgets and it can be ordered online makes it all the more accessible. All the people to whom we have gifted 'True Gifts' have called me up and shared their thanks and appreciation for the thought and more importantly, the deed! - <b>Mr. Pravin Shekar</b> (Founder Trustee, Social Catalyst)</div>";
	var x = rand1(random_msg1.length-1);
	var h = document.getElementById("dycont");
	var quotetxt  = random_msg1[x];
	h.innerHTML = quotetxt;


	var random_msg2 = new Array();
	random_msg2[1] = "<div class=\"blktxt\" align=\"justify\">\<span class=\"heading1\"><b>What the NGOs have to say...</b></span><br />\"True Gifts has helped us to reach more donors, it has helped us monetarily, which in turn allowed us to do more dialysis for underprivileged patients. The awareness created through True Gifts has also benefited our other projects.\" - <b>Ms. Latha Kumaraswamy</b> (TANKER Foundation).</div>";
	random_msg2[2] = "<div class=\"blktxt\" align=\"justify\">\<span class=\"heading1\"><b>What the NGOs have to say...</b></span><br />\"Any start up organization has teething problems and True Gifts has helped broaden our contacts; this intervention has given us more time to concentrate on our project activities.\" - <b>C. Govindakrishnan</b> (Nethrodaya)</div>";
	random_msg2[3] = "<div class=\"blktxt\" align=\"justify\">\<span class=\"heading1\"><b>What the NGOs have to say...</b></span><br />\"True Gifts has helped us fund basic materials like food, a cycle for transport etc. which are very important for our day-to-day activities. NGOs like ours, which are at the startup stage, are now known to others through True Gifts.\" - <b>Mr. Senthil Kumar</b> (Child)</div>";
	var x = rand1(random_msg2.length-1);
	var h = document.getElementById("dycont2");
	var quotetxt2  = random_msg2[x];
	h.innerHTML = quotetxt2;
}




