if (typeof(help_popup_js_included) == 'undefined') { var help_popup_js_included = true; /** * Load and display Display the "Help" IFRAME on the page. */ function showHelp (subject) { var help_window = document.getElementById("help_window"); help_window.src = "/shop/help/popup?window=true&subject=" + subject; help_window.style.position = "absolute"; help_window.style.left = ((document.body.offsetWidth / 2) - (350 / 2)) + "px"; help_window.style.display = "block"; return false; } }