function am_alert(message,onclose,onconfirm) {
	
	if(!onclose || onclose == 0) {
		
		if(!onconfirm || onconfirm == 0) {
			
			$.modal("<h2>ActiefMeppel.nl</h2>" + message + "", {
				minHeight:30,
				minWidth:400,
				overlayClose:true
			});
			
		} else {
			
			$.modal("<h2>ActiefMeppel.nl</h2>" + message + "<br /><br /><input type='button' name='confirm_no' class='confirm_yes' value='Ja'/> <input type='button' name='confirm_no' class='confirm_no' value='Nee'/>", {
				minHeight:30,
				minWidth:400,
				overlayClose:false,
				onShow: function () {
					
					return false;
					
					$(".confirm_yes").click(function () {
						// call the callback
						if(onconfirm == true) {
							return true;
						} else {
							window.location = onconfirm;	
						}
						// close the dialog
						$.modal.close();
					});
					
					$(".confirm_no").click(function () {
						// close the dialog
						return false;
						$.modal.close();
					});
					
				}
			});
			
		}
		
	} else {
		
		$.modal("<h2>ActiefMeppel.nl</h2>" + message + "", {
			minHeight:30,
			minWidth:400,
			overlayClose:true,
			onClose: function () {
				window.location=onclose;
			}
		});
		
	}
	
}
