function Go(s){
	var d = s.options[s.selectedIndex].value;
	if (s.options[s.selectedIndex].value != ""){
		window.top.location.href = d;
	}
	s.selectedIndex=0;
}

function validateEmail(str) {
  eMailRegExp = /^[a-zA-Z]\w*(\.\w+)*(-\w+)*(\.\w+)*@(\w+(-\w+)*\.)+[a-zA-Z]{2,9}$/
  pass = eMailRegExp.test(str);
  if (!pass){
    return false;
  }
  else {
    return true;
  }
}