/**
 * frontend.js
 *
 * Front-end scripts
 *
 * @copyright iLibris
 * @author    Alan Schatteman
 * @license   license
 * @version   1.0
 * @package   photo-online
 */

/**
 * getTotalProducts
 */
function getTotalProducts()
{
    var obj = document.getElementById('totalProducts');
    if (obj != null) {
        return (1 * obj.value);
    }
    else {
        return 0;
    }
}

/**
 * productRowCheckChanged
 */
function productRowCheckChanged(rowId)
{
    var obj = document.getElementById('checkbox_row_' + rowId);
    if (obj.checked) {
        document.getElementById('servicecode_row_' + rowId).focus();
    }
}
