﻿function GetMouseOver(cell, id2, id3) {
    cell.style.cursor = 'hand';
    cell.style.backgroundColor = '#e6e6e6';

    cell2 = document.getElementById(id2);
    cell2.style.backgroundColor = '#e6e6e6';

    cell3 = document.getElementById(id3);
    cell3.style.color = '#3D6484';
    return true;
}

function GetMouseOut(cell, id2, id3) {
    cell.style.cursor = 'hand';
    cell.style.backgroundColor = '#999999';

    cell2 = document.getElementById(id2);
    cell2.style.backgroundColor = '#999999';

    cell3 = document.getElementById(id3);
    cell3.style.color = '#FFFFFF';
    return true;
}

function openTerms(pageName, pWidth, pHeight) {
    eval("window.open('" + pageName + "','NewWindow1','toolbar=no,width=" + pWidth + ",height=" + pHeight + ",directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no,screenX=0,screenY=0,top=0,left=0')");
}
