<!--
var TEST_ONE = {
    full: document.getElementById('test_one').innerHTML,
    subsynopsis: null,
    show_short: function(obj) {
        if(TEST_ONE.full.length > 300) {
            var subsynopsis = TEST_ONE.full.substring(0,300);
            subsynopsis = subsynopsis+"... <a href=\"#\" onclick=\"TEST_ONE.show_all('test_one'); return false;\">read more >></a>";
            document.getElementById(obj).innerHTML = subsynopsis;
        }
    },
    show_all: function(obj) {
    document.getElementById(obj).innerHTML = TEST_ONE.full;
    }
}
TEST_ONE.show_short('test_one');


var TEST_TWO = {
    full: document.getElementById('test_two').innerHTML,
    subsynopsis: null,
    show_short: function(obj) {
        if(TEST_TWO.full.length > 300) {
            var subsynopsis = TEST_TWO.full.substring(0,300);
            subsynopsis = subsynopsis+"... <a href=\"#\" onclick=\"TEST_TWO.show_all('test_two'); return false;\">read more >></a>";
            document.getElementById(obj).innerHTML = subsynopsis;
        }
    },
    show_all: function(obj) {
    document.getElementById(obj).innerHTML = TEST_TWO.full;
    }
}
TEST_TWO.show_short('test_two');


var TEST_THREE = {
    full: document.getElementById('test_three').innerHTML,
    subsynopsis: null,
    show_short: function(obj) {
        if(TEST_THREE.full.length > 300) {
            var subsynopsis = TEST_THREE.full.substring(0,300);
            subsynopsis = subsynopsis+"... <a href=\"#\" onclick=\"TEST_THREE.show_all('test_three'); return false;\">read more >></a>";
            document.getElementById(obj).innerHTML = subsynopsis;
        }
    },
    show_all: function(obj) {
    document.getElementById(obj).innerHTML = TEST_THREE.full;
    }
}
TEST_THREE.show_short('test_three');


var TEST_FOUR = {
    full: document.getElementById('test_four').innerHTML,
    subsynopsis: null,
    show_short: function(obj) {
        if(TEST_FOUR.full.length > 300) {
            var subsynopsis = TEST_FOUR.full.substring(0,300);
            subsynopsis = subsynopsis+"... <a href=\"#\" onclick=\"TEST_FOUR.show_all('test_four'); return false;\">read more >></a>";
            document.getElementById(obj).innerHTML = subsynopsis;
        }
    },
    show_all: function(obj) {
    document.getElementById(obj).innerHTML = TEST_FOUR.full;
    }
}
TEST_FOUR.show_short('test_four');


var TEST_FIVE = {
    full: document.getElementById('test_five').innerHTML,
    subsynopsis: null,
    show_short: function(obj) {
        if(TEST_FIVE.full.length > 300) {
            var subsynopsis = TEST_FIVE.full.substring(0,300);
            subsynopsis = subsynopsis+"... <a href=\"#\" onclick=\"TEST_FIVE.show_all('test_five'); return false;\">read more >></a>";
            document.getElementById(obj).innerHTML = subsynopsis;
        }
    },
    show_all: function(obj) {
    document.getElementById(obj).innerHTML = TEST_FIVE.full;
    }
}
TEST_FIVE.show_short('test_five');
// -->