/**
 * Copyright Jam Design UK Ltd.
 *
 * THIS CODE IS PROTECTED BY COPYRIGHT LAW.
 * If you wish to use or edit the code please contact Jam Design UK Ltd.
 * via e-mail at the following address: copyright@jamuk.com, failure to
 * do so will result in the commencement of legal proceedings upon
 * discovery of any breach of copyright.
 *
 * Sets/unsets the pointer in browse mode
 *
 * Usage: <tr onmouseover="rowColour(this, 'hilightclass')" onmouseout="rowColour(this, 'normalclass')">
 *
 * @param   object   the table row
 * @param   object   the color to use for this row
 *
 * @return  boolean  whether pointer is set or not
 */
function rowColour(theRow, theNewClass)
{
    if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined') {
        return false;
    }

    theRow.className = theNewClass ;

    return true;
}
// end of the 'rowColour()' function


function popUpPass() {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('ifd-press-releases-verify.html', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=310,height=240,left=421,top=312');");
}