/* Alan Murray 05.05 */

// For MM Contribute compatibility...
// (during 'Edit' mode you want to be able to see the background)
if (document.getElementById){
document.write('<style type="text/css">\n')
document.write('/*<![CDATA[*/ \n')
document.write('#content_left .inside, #content_right .inside {background:none;}\n')
document.write('/*]]>*/ \n')
document.write('</style>\n')
}

// _blank windows - this is just a test to see how it could be
// applied through Contribute 3.1 if the page had a strict doctype
// This can obviously be removed.
function targetBlanks() { 
  for (i = 0; i < document.links.length; i++) { 
    if (document.links[i].getAttribute('class') == 'new_window' 
      || document.links[i].className == 'new_window') { 
      document.links[i].setAttribute('target', '_blank'); 
    } 
  } 
} 
window.onload = targetBlanks;

