<!-- Javascript starts - hide from javascript impaired browsers with this line.



//---------------------------------------------------------------------------------------------------------

// Java Function: showHelp - shows the requested help section on the page-help page in a separate window

//---------------------------------------------------------------------------------------------------------

var OpenWin = null;

function showHelp(_url)

{

    if (navigator.appName=='Microsoft Internet Explorer' && ( OpenWin!=null ) && ( !OpenWin.closed ) )

        OpenWin.close();



    OpenWin = this.open(_url, "cimspagehelp", "menubar=1,toolbar=1,status=1,location=1,scrollbars=1,directories=1,resizable=1,height=500,width=700");

    OpenWin.focus();

}

function showHelp(_url,height,width)

{

    if (navigator.appName=='Microsoft Internet Explorer' && ( OpenWin!=null ) && ( !OpenWin.closed ) )

        OpenWin.close();



    OpenWin = this.open(_url, "", "menubar=1,toolbar=1,status=1,location=1,scrollbars=1,directories=1,resizable=1,height="+height+",width="+width);

    OpenWin.focus();

}

function openWindow(_url,height,width)

{
    this.open(_url, "", "menubar=1,toolbar=1,status=1,location=1,scrollbars=1,directories=1,resizable=1,height="+height+",width="+width);
}

// Javascript ends - finish hiding from old browers with this line -->


