<!--

function sendemail(user, domain) {

var p = "\u006d\u0061\u0069\u006c\u0074\u006f\u003a";
var u = user;
var d = domain || location.host.substring( location.host.lastIndexOf( ".", location.host.lastIndexOf(".") - 1 ) + 1 );
void(top.location = p + u + "\u0040" + d); return false; 
}


function xhwToggle(mee)	{
	alert(mee.innerText);
}

function hwToggle(me)	{
	var nextS=getNextSibling(me.parentNode);
	if(nextS.style.display!='block')	{
		nextS.style.display='block';
		me.className='pseudolink_down'
	}
	else	{
		nextS.style.display='none';
		me.className='pseudolink_up'
	}
}


function getNextSibling(startBrother){
  endBrother=startBrother.nextSibling;
	try	{
		endBrother.nextSibling;
	}
	catch(er)	{
		return null;
	}
  while(endBrother.nodeType!=1){
    if(!endBrother.nextSibling){
        //alert('Sorry! No more siblings!');
        return null;
        }
    endBrother = endBrother.nextSibling;
  }
  return endBrother;
}
-->
