function showdropdown()
{
document.getElementById('RightNavButtonDropDown').style.visibility = "visible";
}

function hidedropdown()
{
document.getElementById('RightNavButtonDropDown').style.visibility = "hidden";
} 			

function redirect()
{
var counter = document.getElementById('selectcountry').options.length;
for (var i = 0; i < counter; i++)
{
	if (window.document.getElementById('selectcountry').options[i].selected == true)
	{
		var pst = window.document.getElementById('selectcountry').options[i].text;
		pst = pst.replace(/ /g, "-");
		break;
	}
}
//document.location.href= "/country/index.php?country=" + pst;
//document.location.href= "index.html"
        if(pst == 'United-States'){
        document.location.href= "signup-us.php?country="+pst
        }else{
        if(pst == 'Philippines' | pst == 'Indonesia' | pst == 'Kenya' | pst=='Egypt' | pst=='United-Arab-Emirates'){
        document.location.href= "signup-non-us.php?country="+pst
        }else{
        document.location.href= "signup-non-us-pending.php?country="+pst
        }
        }
	//if(pst == 'Philippines' | pst == 'Indonesia' | pst == 'Kenya' | pst=='Egypt' | pst=='United-Arab-Emirates'){
	//document.location.href= "money-transfer.php?country="+pst
	//document.location.href= "signup-non-us.php?country="+pst
        //}else{
	//document.location.href= "pending.php?country="+pst
        //document.location.href= "signup-non-us-pending.php?country="+pst
	//}
}
