function send (a, b)
{
eml = a +  "@" + b;
return eml;
}

function send2 (a, b)
{
	document.write (send(a, b));
}

function send3 (a, b, c)
{
	eml = "mailto:" + send(a, b);
	if (c != "") eml += "?subject=" + c;
	window.location.href = eml;
}

function w_open(elem) {
	window.open(elem,1,'scrollbars=0,resizable=0,status=no,toolbar=no, menubar=no,left=50,top=50,width=520, height=395');
}