window.onload = function(){
    var strCook = document.cookie;
    if(strCook.indexOf("!~")!=0){
        var intS = strCook.indexOf("!~");
        var intE = strCook.indexOf("~!");
        var strPos = strCook.substring(intS+2,intE);
        document.getElementById("thumb").scrollTop = strPos;
    }
}

function SetDivPosition(){
    var intY = document.getElementById("thumb").scrollTop;
    document.title = intY;
    document.cookie = "yPos=!~" + intY + "~!";
    window.scrollTo(0,intY);
}

function printImg(){

    var display_setting ="toolbar=no,location=no,directories=no,menubar=no,";
        display_setting+="scrollbars=yes,width=481,height=327,left=100,top=25";

    pwin = window.open("", "", display_setting);
    
    pwin.document.open();
    pwin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ');
    pwin.document.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
    pwin.document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
    pwin.document.write('<head><title>Caminantes por la Vida</title></head>');
    pwin.document.write('<body onload="self.print();self.close();">');
    pwin.document.write('<img src="');
    pwin.document.write(document.getElementById("mainImg").src);
    pwin.document.write('" alt="" />');
    pwin.document.write('</body></html>');
    pwin.document.close();

    return false;

}