function hp_phone()
{
	var ban_country=GetCookie("USERCNTRY");
	var t;
	if(ban_country!=null)
	{
		if(ban_country == 98)
		{ // banner for india
			document.getElementById('phnodiv').src="http://imgs.bharatmatrimony.com/bmimages/helpline-india.gif";
		}
		else if(ban_country == 220)
		{	// banner for uae
			document.getElementById('phnodiv').src="http://imgs.bharatmatrimony.com/bmimages/helpline-uae.gif";
		}
		else if(ban_country == 222) 
		{ // banner for usa
			document.getElementById('phnodiv').src="http://imgs.bharatmatrimony.com/bmimages/helpline-usa.gif";
		}
		else if(ban_country == 221) 
		{  // banner for usa
			document.getElementById('phnodiv').src="http://imgs.bharatmatrimony.com/bmimages/helpline-uk.gif";
		}
		else
		{ // for other countries
			document.getElementById('phnodiv').src="http://imgs.bharatmatrimony.com/bmimages/helpline-others.gif";
		}
		clearInterval(t);
	}
	else{t=setInterval("hp_phone()",1000);}
}