// Javascript Document
// This script hides email names by breaking it into pieces and reassembling it when pressing the link

function ml2us (u) {
		pre = "mail";
		url = pre + "to:" + u;
		document.location.href = url + "@mivideo.com";
	}