var floater;
function initFloater()
{
    floater = new Floater("floater");
    floater.Id = 'floatDiv'; // The id of the div with the floated content.  This is the only required property.
    floater.EnableShadow = true; // Turns the shadow on and off.
    floater.ShadowAlpha = 35; // Sets the opacity of the shadow.  0 - 100.
    floater.ShadowColor = "#cccc66";  // Sets the color of the shadow.
    floater.CloseTimeout = 30;  // Sets a timeout for auto-hiding the floater.  Measured in seconds.
    floater.ShadowLeftOffset = 10;  // Sets the number of pixels the shadow is offset.
    floater.ShadowTopOffset = 10;  // Sets the number of pixels the shadow is offset.
    //floater.ShadowImageUrl = "cmsimages/shadow.png"; // Path to a shadow image.
    floater.Init();  // Starts the whole shebang up.
}
