/* ---------------------------------------------------------------------------*/
// send_ml
//
// This is a simple email function. It is used instead of a standard mailto call
// in hopes of avoiding having the email addresses harvested by email marketers.
/* ---------------------------------------------------------------------------*/

function send_ml( ml_name )
{
	window.location = "mai" + "lto:" + ml_name + "@vlaad" + "co.com";
}

function draw_send_ml( ml_name )
{
	document.write( "<a href='#' onclick='send_ml(\"" + ml_name + "\");'>" + ml_name + "@vlaad" + "co.com</a>\r" );
}
