<!--

des01 = "<ul>\
<li>Increase saturation of puppet, \
<li>change color of nose to more red, \
<li>brighten eyes of puppet and\
<li>darken and desaturate grass. \
</ul>";

des02 = "<ul>\
<li>Partially brighten the sky to get a more dramatic sky, \
<li>brighten areas around windows of chateau, \
<li>saturate trees and grass and \
<li>increase saturation of roof. \
</ul>";

des03 = "<ul>\
<li>Darken darker areas on left hand side, \
<li>brighten stickers partially, \
<li>change color of paint spot lower right and \
<li>desaturate green of barrel. \
</ul>";

des04 = "<ul>\
<li>Desaturated brick wall, \
<li>enhanced saturation of painting and \
<li>increased brightness of painting. \
</ul>";

des05 = "<ul>\
<li>Desaturated sky, \
<li>brightened sky, \
<li>enhanced saturation of trees and \
<li>increased contrast in mountain. \
</ul>";

des06 = "<ul>\
<li>Applied 70ies look: \
<li>Targeted green for the white levels, \
<li>targeted dark orange for the black levels and \
<li>decreased contrast a bit. \
</ul>";

function showScreenshot(sid) {
    //document.getElementById('loading').className="spinnervisible";
    MM_swapImage('Sample','','img/PaintGrade_Sample0' + sid + 'b.jpg',1);
    document.getElementById('description').innerHTML=eval('des0' + sid);
    updateActive(sid);
    //document.getElementById('loading').className="spinnerinvisible";
}

function updateActive(liid) {
    for (i=1;i<=6;i++) {
    	if (i == liid) {
    		document.getElementById('ss0' + i).className='active';
    	} else {
    		document.getElementById('ss0' + i).className='';
    	}
    }
}
//-->