function openHelpLink(URLPath)
{
    window.open(URLPath,'_blank',"width=500,height=400,toolbar=no,statusbar=yes,menubar=no,scrollbars=yes,resizable=yes");
}	

function openHelpText(URLPath)
{
    var iMyWidth;
    var iMyHeight;
    //half the screen width minus half the new window width (plus 5 pixel borders).
    iMyWidth = (window.screen.width/2) - (300 + 10);
    //half the screen height minus half the new window height (plus title and status bars).
    iMyHeight = (window.screen.height/2) - (350 + 50);
    //Open the window.
    var win2 = window.open(URLPath,'_blank',"width=500,height=400,toolbar=no,statusbar=no,menubar=no,scrollbars=yes,resizable=yes,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",location=no,directories=no");
    win2.focus();
}
        
function classChange(styleChange,item,img) 
{
    item.className = styleChange;
    item.src = img;
}
