var stripeImg = new Image;
stripeImg.src = '/images/install_stripe.png';
function stripe ( id ) {
    var table = document.getElementById( id );
    for ( var r = 0; r < table.rows.length; r++ ) {
        if ( ! (r % 2) ) {
            var imgs = table.rows[ r ].getElementsByTagName( 'img' );
            if ( imgs[ 0 ] && imgs[ 0 ].src.indexOf( '_block.png' ) == -1 ) {
                imgs[ 0 ].src = imgs[0].src.replace( '.png','_stripe.png' );
            }
            table.rows[ r ].className = 'lightStripe';
        }
    }
}

function noclick () {
    alert( 'Please right-click on this link and select "Add to Favorites" or "Bookmark This Link"' );
}
