﻿function createAlert(type,icon,title,text) {
    if (icon == 'none') {
        icon = '';
    } else {
        icon = 'icon ' + icon;
    }
    if (text == null || text == '') {
        msg = '<h3 class="' + icon + '">' + title + '</h3>';    
    } else {
        msg = '<h3 class="' + icon + '">' + title + '</h3><p>' + text + '</p>';        
    }
 
    $(document).ready(function() {
        $("#alert").html('<div class="alert a' + type + '"><div class="container_12"><span id="alert_hide" class="alert_hide">hide</span>' + msg + '</div></div>');
        $("#alert").slideDown("slow");
        $("#alert_hide").click(function () { 
            $('#alert').slideUp('slow'); 
        });
    });
};