function onclickchangecolor() { window.event.srcElement.style.backgroundColor = "IVORY"; } function onblurchangecolor() { window.event.srcElement.style.backgroundColor = "white" } function labelmouseover() { window.event.srcElement.style.color = "blue"; } function labelmouseoutblack() { window.event.srcElement.style.color = "black"; } function promptentry (item, s) {} function dofocus(item) { item.focus(); item.style.backgroundColor = "IVORY"; } function trimString (str) { str = this != window? this : str; return str.replace(/^\s+/g, '').replace(/\s+$/g, ''); } function swapimage(imgref) { window.event.srcElement.src=imgref;return; } function onlinehelp(sPage) { var randomnumber=Math.floor(Math.random()*1001); var iWindowHeight = screen.availHeight*.85; var iWindowWidth = screen.availWidth*.9; var iWindowLeft=(screen.availWidth-iWindowWidth)-11; var iWindowTop=0; var helpwindow = window.open ("Help/OnlineHelp.htm" + sPage, "num"+randomnumber, "Width="+ iWindowWidth +", Height=" + iWindowHeight + ",top=" + iWindowTop + ", left=" + iWindowLeft +", menubar=no,status=no,minimize=yes,resizable=yes,maximize=yes"); if (!helpwindow) { alert("It appears you have a popup blocker enabled. This is preventing the window from opening. Please disable your popup blocker, or better yet, add this site to your list of trusted sites so that popup windows are allowed across the application."); } else { helpwindow.focus(); } } function onlinehelpsub(sPage) { var iWindowHeight = screen.availHeight*.85; var iWindowWidth = screen.availWidth*.9; var iWindowLeft=(screen.availWidth-iWindowWidth)-11; var iWindowTop=0; var helpwindow = window.open ("../Help/OnlineHelp.htm" + sPage, "onlinehelp", "Width="+ iWindowWidth +", Height=" + iWindowHeight + ",top=" + iWindowTop + ", left=" + iWindowLeft +", menubar=no,status=no,minimize=yes,resizable=yes,maximize=yes"); if (!helpwindow) { alert("It appears you have a popup blocker enabled. This is preventing the window from opening. Please disable your popup blocker, or better yet, add this site to your list of trusted sites so that popup windows are allowed across the application."); } else { helpwindow.focus(); } }