﻿
function goToLink(friendly_name) {
    var result = null;
    switch (friendly_name) {
        case 'book':
            result = "http://qahistory.org/book.htm";
            break;
        case 'butterworth':
            result = "http://qahistory.org/search/detail.php?id=86";
            break;    
            
        case 'clise_anna':
            result = "http://qahistory.org/search/detail.php?id=54";
            break;
        case 'denny':
            result = "http://www.qahistory.org/denny/index.htm";
            break;
         case 'kinnear':
             result = "http://qahistory.org/search/detail.php?id=103";
            break;    
               
        case 'kinnear_park':
            result = "http://qahistory.org/search/detail.php?id=117";
            break;   
			            
        case 'map':
            result = "http://qahistory.org/apts/Thesis_1.JPG";
            break;
        case 'mercer':
            result = "http://qahistory.org/search/detail.php?id=38";
            break;
        case 'mount_pleasant':
            result = "http://qahistory.org/mt_pleasant.htm";
            break;

        case 'parsons':
            result = "http://qahistory.org/search/detail.php?id=79";
            break;
            
        case 'queen_anne_boulevard':
            result = "http://www.qahistory.org/bookbit.htm";
            break;

        case 'queen_anne_style':
            result = "http://qahistory.org/qanames.htm";
            break;
        
        case 'smith_henry':
            result = "http://qahistory.org/search/detail.php?id=53";
            break;
            
         case 'stimson':
             result = "http://www.qahistory.org/405whigh.htm";
            break;   
            
        case 'streetcars':
            result = "http://qahistory.org/streetcars.htm";
            break;
        case 'streetcars_counterbalance':
            result = "http://qahistory.org/counterbalance/index.htm";
            break;
        case 'treat':
            result = "http://qahistory.org/treat/index.html";
            break;
        case 'wilke_farm':
            result = "http://qahistory.org/wilke_farm.htm";
            break;     
        default:
            result = "http://qahistory.org";

    }

    document.location.href = result;

}
