function Underline(HTMLElementID,ON){if(ON)
document.getElementById(HTMLElementID).style.textDecoration="underline";else
document.getElementById(HTMLElementID).style.textDecoration="none";}
function ReplaceImage(ImageID,NewImageFile){document.getElementById(ImageID).src=NewImageFile;}
function NewWindow(WindowURL,WindowName,WindowHeight,WindowWidth,WindowScrollbars){var WindowFeatures="channelmode=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=no,status=no,toolbar=no,";WindowFeatures+="height="+WindowHeight+",width="+WindowWidth+((WindowScrollbars)?",scrollbars=yes":",scrollbars=no");var NewWindow=window.open(WindowURL,WindowName,WindowFeatures,true);if(NewWindow!=null)
NewWindow.window.focus();}