var meniu;
function show(meniu)
{
	if (document.getElementById(meniu).style.display == "none")
	{
		document.getElementById(meniu).style.display = "block";
	}
	else
	{
		document.getElementById(meniu).style.display = "none";
	}
}
var numele;
function text_decoration(numele)
{
	document.getElementById(numele).style.textDecoration = "underline";
}
function text_decoration_none(numele)
{
	document.getElementById(numele).style.textDecoration = "none";
}
user = 'apartmed';
site = 'yahoo.com';
function email()
{
	document.write('<a href=\"mailto:' + user + '@' + site + '\">');
	document.write(user + '@' + site + '</a>');
}