(function () { var fin_recent_quote = document.getElementById('top_rec'); if (fin_recent_quote != null) { var xmlhttp = false; try { // Mozilla, Opera, Safari xmlhttp = new XMLHttpRequest(); } catch(err) { try { // IE 6 xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch(err) { try { // IE 5, 5.5 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch(err) { } } } if (xmlhttp) { xmlhttp.open("GET", "/finance/module/recent", true ); xmlhttp.setRequestHeader('If-Modified-Since', 'Mar 28 12:21:02 JST 2007 =strftime("%a %b %d %T %Z %Y"), 15 Nov 1995 00:00:00 GMT'); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { fin_recent_quote.innerHTML = xmlhttp.responseText; if (typeof ins !== "undefined") { ins.refreshModule("top_rec", false); } } } xmlhttp.send( null ); } } })();