/**
 * Poetpicpixel - Global JavaScript
 * @author franklin clark
 * @updated 11.01.2008
 */

/**
 * Print pixel poem
 */
function printPoem(){
    window.print();
}

/**
 * Email pixel poem
 */
function emailPoem(){
    var subject = "My pixel poem";
    var body = "View it here " + location.href.toString();
    var mailMessage = "mailto:?subject=" + subject + "&body=" + body;
    window.location=mailMessage;
}

