﻿function Outline(message, background, shadow, header, color) 
{
    document.write("<" + header + ">");
    document.write("<div style=\"position: relative;\">");
    document.write("<div style=\"position: absolute; top: " + shadow + "px; left: " + shadow + "px; color: " + background + ";\">" + message + "</div>");
    document.write("<div style=\"position: absolute; top: -" + shadow + "px; left: -" + shadow + "px; color: " + background + ";\">" + message + "</div>");
    document.write("<div style=\"position: absolute; top: " + shadow + "px; left: -" + shadow + "px; color: " + background + ";\">" + message + "</div>");
    document.write("<div style=\"position: absolute; top: -" + shadow + "px; left: " + shadow + "px; color: " + background + ";\">" + message + "</div>");
    document.write("<div style=\"position: relative; color: " + color + "\">" + message + "</div>");
    document.write("</div>");
    document.write("</" + header + ">");    
}