function munnys(textshh) {
	textshh = ""+textshh;
	num_text = textshh.length;
	text_temp = "" ;
	inx = 1
	if (num_text<=3) {
		text_temp = textshh;
	}
	else if ((num_text>=4)&&(num_text<=6)) {
		textshh1 = textshh;
		textshh2 = textshh;
		text_temp = textshh1.substr(0,num_text-3)+","+textshh2.substr(num_text-3,3);				 
	}
	else if ((num_text>=7)&&(num_text<=9)) {
		textshh1 = textshh;
		textshh2 = textshh;
		textshh3 = textshh;				 
		text_temp = textshh1.substr(0,num_text-6)+","+textshh2.substr(num_text-6,3)+","+textshh3.substr(num_text-3,3);				 
	}
	return text_temp;
}

