/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2008 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 132 2008-05-23 16:05:17Z emartin24 $
 *


$(document).ready(function () {
	$('#basicModal input:eq(0)').click(function (e) {
		//E.preventDefault();
		//
	});
}); 

*/



var MessageBox =function(){
    Content="";
    Type="";
    this.ShowMe=function()
    {
        switch(this.Type)
        {
            case "alertbox":   
            $("#ModalContent").html(this.Content);         
            break;
            case "infobox":
            $("#ModalContent").html(this.Content);
            break;
        }        
        $('#basicModalContent').modal();
    }

}
