function email(name, domain, suffix, text)
{
   var address = name + "\u0040" + "borsaniweb" + "." + "com";
   var url = "mailto:" + address;

   if( ! text )
   {
      text = address;
   }

   document.write("<a href=\"" + url + "\">" + text + "</a>");
}

function mostraMenu(menuCorrente) {
		if (document.getElementById) {
			questoMenu = document.getElementById(menuCorrente).style
			if (questoMenu.display == "block") {
				questoMenu.display = "none"
			}
			else {
				questoMenu.display = "block"
			}
			return false
		}
		else {
			return true
		}
}

function opener(str) {

        searchWin = window.open(str,'opener','scrollbars=no,resizable=yes,width=620,height=280,status=no,location=no,toolbar=no');
}
//        searchWin.refer = self;

