﻿/// <reference path="jqueryI.js" />

$(document).ready(function(){

$("#wAlert").hide();

$("#btnCloseAlert").click(function(){

$("#wAlert").hide();


});

});

function showMessage(title,msg){

$("#wAlert").show();

$("#wTitle").empty();
$("#wTitle").append(title);

$("#wMsgAlert").empty();
$("#wMsgAlert").append(msg);

}