
function img_over (what, disableMakeAsLink) {
    what.style.position="absolute";
        what.style.width="auto";
        what.style.height="auto";

        what.onmouseout=function (){
            what.style.width="60px";
            what.style.height="60px";
            what.style.position="static";
        };
}