function ShowTipFriend()
{
	document.getElementById( "uiTipFriend" ).style.display = "block";
	document.getElementById( "uiReportInterest" ).style.display = "none";
}

function ShowReportInterest()
{
	document.getElementById( "uiTipFriend" ).style.display = "none";
	document.getElementById( "uiReportInterest" ).style.display = "block";
}
