function openSite(id)
{	
	var dropDownList = document.getElementById(id);
	if (dropDownList.value != "")
	{
		window.open(dropDownList.value);
	}
}
