﻿function confirmation_flickr() {
    var answer = confirm("My pictures can all be viewed from the Pictures area of this website.\n\nDo you still want to go to Flickr?")
    if (answer) {
        window.location = "http://www.flickr.com/photos/rogerdelott/sets/";
    }
    else {
        return false;
    }		
}

