﻿var element,existing_background,highlight_colour;function highlight_part_of_this_document(a_tag_ref,highlight_col){var a_tag_ref,highlight_col,highlight_colour_std="#FFFF00",target_id;target_id=a_tag_ref.hash.substring(1)+"_body";element=document.getElementById(target_id);if(element){highlight_colour=highlight_col?highlight_col:highlight_colour_std;if(document.defaultView)existing_background=document.defaultView.getComputedStyle(element,null).getPropertyValue(backgroundColor);else if(element.currentStyle)existing_background=eval("element.currentStyle.backgroundColor");setTimeout("element.style.background=highlight_colour",500);setTimeout("element.style.background=existing_background",2e3)}return true}