/**
 * @author Jan
 */
function createMailLink (user, domain)
{
    var mail = user + '@' + domain;

    document.write ('<a href="mailto:' + mail + '">' + mail + '</a>');
}

function blendBox(){
	$("msg").style.display="none";
}

function blendMsgBox(time){
	$("msg").style.display="block";
	window.setTimeout(blendBox,time);
//	Effect.Fade("msg", {from:1.0, to:0.0, duration:3});
//	$('msg').fade({ duration: 3.0, from:1.0, to:0.0 });

}
