﻿/*    Humility of Mary Shelter, Inc.
        Created 5/15/2009\
        by Reggie White
*/

function displayPage(contents) {
    document.getElementById(contents).target = "_blank";
}

function goToURL(listBox) {

    var myindex = document.getElementById(listBox).selectedIndex;
    if (!myindex == "") {
        window.location.href = document.getElementById(listBox).options[myindex].value;
    }
}

