/* verifica la o secunda daca apare ceva comenzi noi in urma unul call AJAX  */
var timeOut;
function checkRedirection(){
	if (document.getElementById('mBox')){
		var style = document.getElementById('mBoxStyle').value;
		var redirect = ""; 
		if (document.getElementById('mBoxRedirect'))
			redirect = document.getElementById('mBoxRedirect').value;
		
		document.getElementById('message').className = style;
		document.getElementById('message').innerHTML = document.getElementById('mBox').value;
		if ((style == "success") && (redirect!="")){
			setTimeout("window.location = '" + redirect + "'", 1000);
		}
	}
	if(document.getElementById('redirect')) {
		window.location = document.getElementById('redirect').value;
	}

	setTimeout(checkRedirection, 1000);
    return false;
}
checkRedirection();