	function declinecontact(url,formname)
	{
		var i;i=confirm('Are sure you want to Decline Express Interest \n and Stop All Future Communication ?');
		if(i) 
			{document.action=url; document.express_interest_decline.submit();return true;} 
		else return false; 
	}
	function acceptcontact(url,formname)
	{
		var i;i=confirm('Are sure you want to Accept and Communicate with Them ?');
		if(i) 
			{document.action=url; document.express_interest_accept.submit();return true;} 
		else return false; 
	} 

