var isLibrary = ((typeof document.forms[0].PageType != "undefined") && (document.forms[0].PageType.value == "library")); var isArticle = ((typeof document.forms[0].PageType != "undefined") && (document.forms[0].PageType.value == "article")); var isCart = ((typeof document.forms[0].Subsection != "undefined") && (unescape(document.forms[0].Subsection.value) == "Shopping cart")); var isSearch = ((typeof document.forms[0].Subsection != "undefined") && (unescape(document.forms[0].Subsection.value) == "Search")); var isClubLoginPage = ((typeof document.forms[0].Title != "undefined") && (unescape(document.forms[0].Title.value) == "Teachers Club")); var isRelatedResources = ((typeof document.forms[0].Section != "undefined") && (unescape(document.forms[0].Section.value) == "Related Resources")); if(isRelatedResources) { if(getUrlCat()) { document.write('
Go back to ',unescape(getUrlCat()),'
'); } else { document.write('
Go back to the previous page.
'); } } if((isLibrary || isArticle) && (!isCart) && (!isSearch) && (!isClubLoginPage)) { if((typeof document.forms[0].Headline != "undefined") && (document.forms[0].Headline.value != "index")) { document.write('',unescape(document.forms[0].Headline.value),''); } if((typeof document.forms[0].IntroText != "undefined") && (document.forms[0].IntroText.value != "index")) { document.write('',unescape(document.forms[0].IntroText.value),''); } } if (document.forms[0].PageType.value == "message" && unescape(document.forms[0].msgPageTitle.value) == "Order received"){ document.write('Order received'); }