function do_register() {
	document.f1.act.value=2;
	document.f1.submit ();
}

function do_smail () {
	document.f1.submit ();
}

// Fast Navigate (from header)
function do_fast () {
	var str;
	for (i=0;i<document.fn.fnav.length;i++) {
		if (document.fn.fnav.options[i].selected) {
			str = document.fn.fnav.options[i].value;
			if (str.indexOf('http') != -1) {  //found
				window.location = str;
			}
			else {
				window.location = 'http://www.ibb.ru/'+str;
			}
		}
	}
}
