// JavaScript Document
// myFoo for fredericfraer.ru

window.presentation = function(showId) {
	$("span.presentation").each(function() {
		$(this).hide();
	});
	$("#"+ showId).show();
	$("#"+ showId).scrollTop();
};
window.writeEmail = function(host, user, zone) {
	var emlstr=user+'@'+host+'.'+zone;
	var htmleml = '<a href="'+'ma'+'ilto:'+ emlstr +'">'+emlstr+'</a>';
	document.write(htmleml);
};
