function gotoSite(where) 
{   
    var L = where.selectedIndex; 
	if (where.options[L].value != "#") {
    wohin = where.options[L].value;
	window.location.href = where.options[L].value; return false; 
	}
}
