/**
 * Mailto Protection.
 * Version: 1.0
 *
 * The use of this script is strictly forbidden without prior written
 * consent. You must obtain permission before copying, modifying, 
 * redistributing, deriving or selling any part of this program.
 *
 * Copyright © 2006 HYPERZOID
 * All Rights Reserved
 */

var MA        = "ma";
var IL        = "il";
var TO        = "to:"
var AT_SYMBOL = "@";
var DOMAIN    = "mtgarc.ca";

function otliam(account) {
     location.href = MA + IL + TO + account + AT_SYMBOL + DOMAIN;
}

