﻿function Resize() {
    //var htmlheight = document.body.scrollHeight;
    //var windowheight = document.documentElement.clientHeight;
    //alert(htmlheight);
    // alert(document.getElementById('screenCenter').scrollHeight)
    
    var objContent =  document.getElementById('content');
   
    if (objContent.clientHeight < 675) {
        objContent.style.height = "675px";
        //alert(document.getElementById('content').style.height);
    }

}


function FillGrotePrent(foto) {
    var grotePrent = document.getElementById('grotePrent');
    grotePrent.src = foto;
}

