I'm having a problem with one of the pages in my site, http://www.ventana-crc.com/schedule...ures.aspx. When I open the page in either Safari or Firefox, and click on any of the links under the subhead "Sample SMS Assessment Battery", I can see the brief description on the right side of the page. However, when I open the same page in IE6, the brief description appear on for a few seconds before IE refreshes the page and it disappeared. Please advise how I could fix this. The javascript I'm using for this is:
function blocking(nr){ if (document.layers) { document.layers['QRS'].display = 'none'; document.layers['CRT'].display = 'none'; document.layers['DA'].display = 'none'; document.layers['DSST'].display = 'none'; document.layers['DV'].display = 'none'; document.layers['DWR'].display = 'none'; document.layers['STM'].display = 'none'; document.layers['CFF'].display = 'none'; document.layers['BP'].display = 'none'; current = (document.layers[nr].display == 'none') ? 'block' : 'none'; document.layers[nr].display = current; } else if (document.all) { document.all['QRS'].style.display = 'none'; document.all['CRT'].style.display = 'none'; document.all['DA'].style.display = 'none'; document.all['DSST'].style.display = 'none'; document.all['DV'].style.display = 'none'; document.all['DWR'].style.display = 'none'; document.all['STM'].style.display = 'none'; document.all['CFF'].style.display = 'none'; document.all['BP'].style.display = 'none'; current = (document.all[nr].style.display == 'none') ? 'block' : 'none'; document.all[nr].style.display = current; } else if (document.getElementById) { document.getElementById('QRS').style.display = 'none'; document.getElementById('CRT').style.display = 'none'; document.getElementById('DA').style.display = 'none'; document.getElementById('DSST').style.display = 'none'; document.getElementById('DV').style.display = 'none'; document.getElementById('DWR').style.display = 'none'; document.getElementById('STM').style.display = 'none'; document.getElementById('CFF').style.display = 'none'; document.getElementById('BP').style.display = 'none'; vista = (document.getElementById(nr).style.display == 'none') ? 'block' : 'none'; document.getElementById(nr).style.display = vista; }}