var browsers = [{ name: "Internet Explorer 7+", url: "http://www.microsoft.com/windows/Internet-explorer/default.aspx", image: "<%= image_path('browser_ie.gif') %>" }, { name: "Firefox 3+", url: "http://www.mozilla.com/firefox/", image: "<%= image_path('browser_firefox.gif') %>" }, { name: "Safari 3+", url: "http://www.apple.com/safari/download/", image: "<%= image_path('browser_safari.gif') %>" }, { name: "Opera 9.5+", url: "http://www.opera.com/download/", image: "<%= image_path('browser_opera.gif') %>" }, { name: "Chrome 2.0+", url: "http://www.google.com/chrome", image: "<%= image_path('browser_chrome.gif') %>" }]; function showWarning() { var body = document.getElementsByTagName('body')[0]; var warning = document.createElement("div"); var full_width = document.documentElement.clientWidth; var full_height = document.documentElement.clientHeight; var width = 660; var height = 325; var pre_template = '
Close [x]

Did you know that your Internet Explorer is out of date?

To get the best possible experience using our website we recommend that you upgrade to a newer version or other web browser. A list of the most popular web browsers can be found below.

Just click on the icons to get to the download page.

'; var middle = ""; var i; for (i = 0; i < browsers.length; i += 1) { middle += "
) no-repeat scroll left top; width: 120px; height: 122px;'>
" + browsers[i].name + "
"; } var post_template = "
"; warning.innerHTML = pre_template + middle + post_template; warning.style.position = 'absolute'; warning.style.left = (full_width / 2 - width / 2).toString() + "px"; warning.style.top = (full_height / 2 - height / 2).toString() + "px"; warning.id = "__ie_warning__"; body.appendChild(warning); } function hideWarning() { var warning = document.getElementById('__ie_warning__'); warning.style.display = 'none'; } window.onload = function() { showWarning(); };