CINXE.COM

Application unavailable

<!DOCTYPE html> <!-- VERSION = $Id$ $Rev: 202541 $ $Date: 2013-02-08 21:48:24 +0000 (Fri, 08 Feb 2013) $ --> <html lang="en"> <head> <meta charset="utf-8" /> <title>Application unavailable</title> <style> html, body, p, div { margin: 0; padding: 0; } html { height: 100%; } body { font-family: Arial, sans-serif; font-size: 12px; background-color: #D4D4D4; height: 100%; } a { color: #114f8c; text-decoration: none; } a:hover { color: #64a0c4; } #contentWrapper { background-color: #FFF; box-shadow: 0 0 7px #B2B2B2; margin: 0 auto; min-height: 100%; width: 960px; overflow: hidden; } .message { margin: 100px 100px 200px 100px; } .message p { margin-top: 10px; font-family: "Arial Narrow", Arial, sans-serif; font-size: 24px; } .errorContainer { border-top: 1px solid #d4d4d4; color: #909090; padding-top: 10px; margin: 0 100px 10px 100px; } </style> <script type="text/javascript"> function getQueryString() { var result = {}, queryString = location.search.substring(1), re = /([^&=]+)=([^&]*)/g, m; while (m = re.exec(queryString)) { result[decodeURIComponent(m[1])] = decodeURIComponent(m[2]); } return result; } </script> </head> <body> <div id="contentWrapper"> <div class="message"> <img src="warning.png" alt="warning"/> <p id="messageText">Sorry, this application is not currently available. Please try again later or contact your librarian.</p> <p id="tryAgainLink"></p> </div> <div class="errorContainer"> <p>Error code: <span id="errorCode"></span></p> </div> </div> <script type="text/javascript"> //get URL parameters and insert values in page (function insertURLValues() { var urlVars = getQueryString(); var messElem, codeElem, linkElem, origReqLink, origReqHref, decodedMess; if (typeof urlVars["message"] != "undefined") { decodedMess = decodeURIComponent(urlVars["message"]).replace(/\+/g, ' '); messElem = document.getElementById("messageText"); if (messElem) { messElem.textContent = decodedMess; } } if (typeof urlVars["origReq"] != "undefined") { linkElem = document.getElementById("tryAgainLink"); if (linkElem) { linkElem.innerHTML = "<a id='origReq' href='#'></a>"; origReqLink = document.getElementById("origReq"); origReqLink.textContent = urlVars["origReq"]; } } if (typeof urlVars["errorCode"] != "undefined") { codeElem = document.getElementById("errorCode"); if (codeElem) { codeElem.textContent = urlVars["errorCode"]; } } })(); </script> </body> </html>