
function GoToSite(sitename)
{
	document.location.href = sitename;
}
function GoToSiteSel(selname)
{
	var val = document.getElementById(selname).value;
	if (val != "")
	{
		document.location.href = val;
		
	}
	else
	{
		alert("Please select an option");
	}
}
