/* ---------------------------------------------------------------------------*/
// 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 + "@" + "vlaadco.com";
}
