var popup = {init : function(){var cookie = Cookie.read('openPopup');if(cookie == null){ var wSize = window.getSize();var blanket = new Element('div',{html : '&nbsp;',id : 'blanket',style : 'width:'+wSize.x+'px;height:'+wSize.y+'px;position:fixed;z-index:10000;top:0;left:0;background:#fff'});blanket.setOpacity(0);var imgmap = new Element('map' , {name : 'navi',id : 'naviMap'}).inject(document.body);var closeBTN = new Element('area' , {shape : 'rect',coords : '493,26,543,36',href : 'javascript:popup.close();'}).inject($('naviMap'));var moreBTN = new Element('area' , {shape : 'rect',coords : '15,253,471,315',href : 'index.php?action=ajandek'}).inject($('naviMap'));var disable = new Element('area' , {shape : 'rect',coords : '534,55,545,66',href : 'javascript:popup.disapp();'}).inject($('naviMap'));var poupIMG = new Element('img' , {'class' : 'png',style : 'width:661px;height:391px;border:none; padding: 10px;position:fixed;top:'+((wSize.y/2)-195)+'px;left:'+((wSize.x/2)-330)+'px;z-index:100000',src : 'images/popup/popup.png',id : 'poupIMG',usemap : '#navi'});poupIMG.setOpacity(0);blanket.inject(document.body);poupIMG.inject(document.body);var fx = new Fx.Tween(poupIMG , {duration:1000});fx.start('opacity' , 0,1);}},disapp : function(){$('poupIMG').src = "images/popup/popup2.png";Cookie.write('openPopup', true, {duration: 365});},close : function(){var fx = new Fx.Tween($('poupIMG') , {duration:1000});fx.start('opacity' , 1,0).chain(function(){$('poupIMG').destroy();$('blanket').destroy();});}};window.addEvent('domready', popup.init);window.addEvent('resize',function(){try{var wSize = window.getSize();$('poupIMG').setStyle('left',((wSize.x/2)-330));$('poupIMG').setStyle('top',((wSize.y/2)-195));}catch(z){};});
