﻿util = {};

util.sendToContact = function() {
    var name = "contact";
    var domain = "monlookbook.com";
    var aro = "@";
    location.href = 'mailto:' + name + aro + domain;
}

util.htmlEncode = function(html) {
    return $('<div/>').text(html).html();
}

util.htmlDecode = function(text) {
    return $('<div/>').html(text).text();
}
