function _alert(msg, type) {
	if (type == "") {
		type = "alert";
	}

	var content = '<div id="alert-div" class="' + type + '">' + msg + '</div><div id="alert-btns"><img id="btn-close" class="header-btn" src="/images/buttons/btn_inchide.jpg"/></div>'; 
 
	var modal = new Modal({
	    html: content,
	    width: Browser.Engine.trident ? 310 : 300,
	    height: Browser.Engine.trident ? 146 : 148,
	    edgeMargin: 1,
	    windowRadius: 9,
	    opacity: 0.80,
	    animate: false,
	    shadowSize: 8,
	    colors: {
	        modalBackground: "#CCC",
	        windowBackground: "#999",
	        contentBackground: "#EFEFEF"
	   },
	   showTitleBar: true,
	   padding: 0,
	   title: "Esotera",
	   titlebarHeight: 20,
	   backgroundClickDismissesModal: false
	});

		   
	$("btn-close").addEvent("click", function() {
		modal.close();
	});
}
