document.write('<style type="text/css" media="screen"> .confirmationfade{background-color: #000;} div.confirmationbox {cursor:default;} div.confirmationbox * {cursor:default;} div.confirmationwarning #confirmation {background: #5ab3d0;} div.confirmation .confirmationclose{display: none;} </style>');

function jalert(message) {
	$j.prompt(message, {
		buttons: {
			ok: {
				"text": window.confirmation["ok"],
				"ret": true
			}
		}
	}, 1);
}

function jconfirm(message) {
	$j.prompt(message, {
		buttons: {
			yes: {
				"text": window.confirmation["yes"],
				"ret": true
			},
			
			no: {
				"text": window.confirmation["no"],
				"ret": false
			}
		}
	}, 2);
}