﻿function ShowHideSearchBox()
{	
	var searchKey=document.getElementById("MemberSearch").options[document.getElementById("MemberSearch").selectedIndex].text;
	var searchValue=document.getElementById("MemberSearch").options[document.getElementById("MemberSearch").selectedIndex].value;	
	
	if(searchKey == "Member Name" || searchKey == "Destination Name" || searchKey == "Destination Expert" || searchKey == "SME Expert")
	{
	    document.getElementById("srchBox").style.visibility="visible";
	    document.getElementById("srchBox").style.display="block";
		document.getElementById("keyword").focus();
    }
	else
	{
	    document.getElementById("srchBox").style.visibility="hidden";
	    document.getElementById("srchBox").style.display="none";
	}
}

function FindPeople()
{
    var searchKey=document.getElementById("MemberSearch").options[document.getElementById("MemberSearch").selectedIndex].text;
    var searchValue=document.getElementById("MemberSearch").options[document.getElementById("MemberSearch").selectedIndex].value;	
    var keyword=document.getElementById("keyword").value;
    
    if(document.getElementById("MemberSearch").selectedIndex != 0)
    {
        if(document.getElementById("srchBox").style.display == "block" && (keyword == "" || keyword == "Enter Keyword"))
            document.getElementById("keyword").value="Enter Keyword";
        else
        {
            if(searchValue == 1)
                window.location.href="../Community/MemberListing-Name.aspx?key=" + keyword + "";
            else if(searchValue == 2)
                window.location.href="../Community/MemberListing-Dest.aspx?key=" + keyword + "";            
            else if(searchValue == 3)
                window.location.href="../Community/MemberListing-Experts.aspx?key=" + keyword + "&type=dest";
            else if(searchValue == 4)
                window.location.href="../Community/MemberListing-Experts.aspx?key=" + keyword + "&type=sme";
            else if(searchValue <= 11)
                window.location.href="../Community/MemberListing-Interest.aspx?key=" + searchKey + "&val=" + searchValue + "&type=activity";
            else
                window.location.href="../Community/MemberListing-Interest.aspx?key=" + searchKey + "&val=" + searchValue + "&type=interest";
        }
    }
}