// JavaScript Document
function confirmar(msj, url){
	if(confirm(msj)){
		window.location = url;
	}
}