var DS = "/";
function jumpTo(path,confirmMessage) {
    var answer = confirm(confirmMessage);
    if (answer == 1)	{
        GoTo(path);
    }
}

function GoTo(path) {
    document.location.href = 'http://www.alexstewartbolivia.com/' + path;
}
