// ez kell a trukkhoz var napkepetljsonobj = { title : '2005 10 22', text : 'Dobért mentünk...', linkurl : 'http://www.freeweb.hu/tomlap/kepek/2005/051022/index3.html', thumburl : 'http://www.freeweb.hu/tomlap/kepek/2005/051022/thumbnails/tndobos_42.JPG', openwindow : function(){ window.open(this.imglinkurl,'_blank',''); return true; }, checkimgloaded : function(){ if(!napkepetljsonobj.tempthumb.complete){ setTimeout('napkepetljsonobj.checkimgloaded(napkepetljsonobj.myimg)',1000); } else{ max_x=napkepetljsonobj.myimg.width; max_y=napkepetljsonobj.myimg.height; pic_x=napkepetljsonobj.tempthumb.width; pic_y=napkepetljsonobj.tempthumb.height; ex=pic_x; ey=pic_y; if(ex>max_x) { ex=max_x; ey=max_x*pic_y/pic_x; } if(ey>max_y) { ey=max_y; ex=max_y*pic_x/pic_y; } napkepetljsonobj.myimg.width=ex; napkepetljsonobj.myimg.height=ey; napkepetljsonobj.myimg.src=napkepetljsonobj.tempthumb.src; } }, loadparameters : function(prefix){ napkepetljsonobj.myimg=document.getElementById(prefix+'img'); mytext=document.getElementById(prefix+'text'); mytitle=document.getElementById(prefix+'title'); napkepetljsonobj.tempthumb=new Image(); napkepetljsonobj.tempthumb.src=this.thumburl; napkepetljsonobj.checkimgloaded(); napkepetljsonobj.myimg.imglinkurl=this.linkurl; napkepetljsonobj.myimg.onclick=this.openwindow; mytext.innerHTML=this.text; mytitle.innerHTML=this.title; } } napkepetljsonobj.loadparameters('napkepetl');