// JavaScript Document //Initialisation function popProduto(pid){ w = window.open("http://www.embreex.com.br/produtos.php?id="+pid,"produto","top=0,scrollbars=yes,left=0,resizable=yes"); w.focus(); } function popComparacao(){ w = window.open("http://www.embreex.com.br/comparacao.php","comparacao","top=0,scrollbars=yes,left=0,resizable=yes"); w.focus(); } function hideLoad(divid){ loader = 'loader'+divid; $(loader).style.display='none'; } function showPhoto2(e){ if(typeof(e)=='undefined')var e=window.event source=e.target?e.target:e.srcElement if(source.nodeType==3)source=source.parentNode pid=source.getAttribute("idprodutos"); w = window.open("http://www.embreex.com.br/produtos.php?id="+pid,"produto","top=0,scrollbars=yes,left=0"); w.focus(); return false; } function showPhoto(pid){ var arrayPageSize = getPageSize(); if(arrayPageSize[0] < 1000){ if(pid){ window.open('http://www.embreex.com.br/linhas.php?cat='+pid,'linha'+pid,'width='+arrayPageSize[0]+',height='+arrayPageSize[1]+',top=0,left=0,resizable=yes,scrollbars=yes'); }else{ window.close(); } return; } if($('photo').visible()){ $('photoContent').toggle(); $('photo').toggle(); $('photoContentInner').update(''); }else{ Element.setHeight('photo', arrayPageSize[1]); $('photo').toggle(); Element.setWidth('photoContent', 7*arrayPageSize[2]/8); Element.setHeight('photoContent', 7*arrayPageSize[3]/8); $('photoContent').setStyle({'left': arrayPageSize[2]/16+"px" ,'top': arrayPageSize[1]/16+"px"}); $('photoContent').toggle(); $('photoContent').scrollTo(); $('photoContentInner').update('Carregando...'); new Ajax.Updater($('photoContentInner'),'http://www.embreex.com.br/linhas.php?cat='+pid, {}); } } function changerPhoto(pid){ new Effect.Fade('photo_grd', {duration: 0.5, afterFinish: function(){ new Ajax.Updater($('photo'),'pages/photo.php?id='+pid, {}); } }); } function showImage(pid){ if(document.viewport.getWidth() < 1000){ if(pid){ window.open('http://www.embreex.com.br/produtos.php?id='+pid,'linha'+pid,'width='+document.viewport.getWidth()+',height='+document.viewport.getHeight()+',top=0,left=0,resizable=yes,scrollbars=yes'); }else{ window.close(); } return; } if(!$('photoImage').visible()){ new Effect.Appear('photoImage',{duration: 0.2, afterFinish: function(){ //Element.setWidth('photoImage', $('photoContent').getWidth()); //Element.setHeight('photoImage', $('photoContent').getHeigth()); //('photoImage').setStyle({'left': arrayPageSize[2]/16+"px" ,'top': arrayPageSize[1]/16+"px"}); $('photoImage').clonePosition('photoContent') new Ajax.Updater($('photoImage'),'http://www.embreex.com.br/produtos.php?id='+pid, {}); } }); }else{ new Effect.Fade('photoImage', {duration: 0.5}); $('photoImage').update(''); } } function mark(pid){ new Ajax.Request('http://www.embreex.com.br/_ajax.php?acao=marcarComparacao&id='+pid, { onComplete: function(transport) { var notice = $('marker_'+pid); if (transport.responseText == 'ok') notice.setStyle({ background: 'url(http://www.embreex.com.br/_shared/images/star_on.gif) no-repeat right' }); $('productList').show(); } }); } function fecharBanner(){ $('banner15anos').fade(); $('photo').fade(); } function init(){ if($('banner15anos')){ var arrayPageSize = getPageSize(); Element.setHeight('photo', arrayPageSize[1]); $('photo').toggle(); window.setTimeout(function() { fecharBanner(); }, 10000); } } window.onload = init;