function email ()
{
	serv = "9883797";
	url = "bvu.ru";
	mail =  serv + "@" + url;
	
	link = "<a href='mailto:" + mail + "'>" + mail + "</a>";
	document.write (link);
}


// скрытие/открытие слоя
function show_hide(group_id){
	var s = document.getElementById('s' + group_id).style;
	if(s.display == 'none')
		s.display = 'block';
	else
		s.display = 'none';
	return false;
}