/**
 *  spambot circumvention, asks user for confirmation 
 *  before loading up email prog.
 *  @access:	public
 *  @param:     nme, string, user name.
 *  @param      arg[1], string, optional, servername
 **/
function sendMail(nme)
{
	var serv = (arguments[1])? arguments[1]:'quaint.info';
	var theText = 'This will open your default e-mail client to send '+ nme + '@' + serv +' an e-mail\n';
	theText = theText + 'Do you wish to continue?';
	var okidoki = confirm(theText);
	if (okidoki) document.location.href = 'mailto:' + nme + '@' + serv;
	return;
} 
//function