if (!window.jQuery) {
    throw("jQuery must be referenced before using jqalert");
} else

if (!window.jqalerter) {
    window.jqalerter = {

        alert: function(message, title, options, windowElement) {
            $.nyroModalManual({
				bgColor: '#000000',
				width:400,
				minWidth:400,
				height:150,
				minHeight:150,
				content: '<div style="width:390px;background-color:#FE0C03;color:white;font-weight:bold;padding:5px;">'+title+'</div><br><div style="width:390px;background-color:white;padding:5px;color:black;">'+message+'</div><div style="width:100%;text-align:center;margin-top:10px;"><input type="button" value="OK" style="width:70px;border:1px solid ##FE0C03;background-color:#FE0C03;color:white;font-weight:bold;" onclick="javascript:$.nyroModalRemove();"></div>'
			});
        }
    }
}

if (!window.jqalert) {
    window.jqalert = window.jqalerter.alert;
}