
function alert(message) 
{
    var bodyWidth = (Element.getDimensions('theBody').width / 2)  - 210; //calculate the screen width
    var bodyHeight = 175;

    new Insertion.Top('theBody',
    '<div id="hoverBox" class="popUpBox" style="left: ' + bodyWidth + 'px; top: ' + bodyHeight + 'px;">'+
        '<div class="titleBarGreen"><strong>Media Comparison<\/strong><\/div>'+
        '<div class="results">'+
            '<div class="content">' + message +
                '<div class="hoverButtons"><br /><a href="#" onclick="Element.remove(\'hoverBox\'); return false;"><img src="images/close.png" border=0 /><\/a>'+
            '<\/div>'+
        '<\/div>'+
    '<\/div>');
    new Draggable('hoverBox');
}
