} // End function loadStPatricksDay()
function chooseStyle(cssLocation){
sSheet = document.createElement("link")
sSheet.href = cssLocation
sSheet.rel = "stylesheet"
sSheet.type = "text/css"
document.body.appendChild(sSheet)
} // End function chooseStyle()
function loadExternalScript(whichScript){
externalScript = document.createElement('script')
externalScript.setAttribute('src',whichScript)
externalScript.setAttribute('type','text/javascript')
document.getElementsByTagName('head')[0].appendChild(externalScript)
} // End function loadExternalScript()
-->