function showidsearch()
{
	document.getElementById('searchbyid').style.display="";
}
function hideidsearch()
{
	document.getElementById('searchbyid').style.display="none";	
}
function searchProfile()
{
	if(document.getElementById('profile').value=="")
	{
			alert('Profile ID is mandatory');
	}
	else
	{
			window.location="profile-match.php?profile="+document.getElementById('profile').value;
	}
}

function showlivehelp()
{
	document.getElementById('livehelp').style.display="";
}
function hidelivehelp()
{
	document.getElementById('livehelp').style.display="none";	
}

function showliveMoney()
{
	document.getElementById('livemoney').style.display="";
}
function hideliveMoney()
{
	document.getElementById('livemoney').style.display="none";	
}
