function alerta(msg,redireccion){
	Dialog.alert(msg,{className:"alphacube", width: 400, height:null, okLabel: 'Aceptar',ok:function(win) {if(redireccion)window.location=redireccion;return true}});
}

function confirmar(msg,opciones){
	if (opciones['url']){
		opciones['okFunction']=function(win){window.location=opciones['url']};
	}else if (!opciones['okFunction']){
		opciones['okFunction']=function(win){return true};
	}
	if (!opciones['cancelFunction']){
		opciones['cancelFunction']=function(win){};
	}
	Dialog.confirm(msg, {className:"alphacube", width:400, okLabel: 'Aceptar', cancelLabel:'Cancelar', cancel:opciones['cancelFunction'], ok:opciones['okFunction'] });
}