var dopstr = { content : null, content_form : null, ok : true, _init :false, lang : 'cs', active : '0', box_width : 400, box_heigh : 240, movemax : 0, _show : false, init : function () { var oEl=document.getElementById('doporucit_stranku_show'); if (oEl) dopstr.content=oEl; else dopstr.ok=false; oEl=document.getElementById('dopstr_ajax_form'); if (oEl) dopstr.content_form=oEl; else { alert('Neexistuje objekt s id "dopstr_ajax_form"'); dopstr.ok=false; } if (dopstr.ok) dopstr.generate_form(); }, showhide: function () { if (dopstr.movemax==0) { if (!dopstr._init) { dopstr.init(); dopstr._init=true; } if (dopstr._show) { dopstr._show=false; dopstr.movemax=-1; dopstr.form_move(); } else { dopstr._show=true; dopstr.content_form.style.width='100%'; dopstr.content_form.style.height='0px'; cls.remove(dopstr.content_form,'hidden'); dopstr.movemax=1; dopstr.form_move(); } } }, form_move: function () { if (dopstr.movemax==1) dopstr.form_show(); else if (dopstr.movemax==-1) dopstr.form_hide(); }, form_show: function () { var bMax=false; if (dopstr.content_form.style.width=='100%') bMax=true; var width_act=parseInt(dopstr.content_form.style.width); var height_act=parseInt(dopstr.content_form.style.height); var bMove=false; var max=50; if (!bMax && dopstr.box_width>width_act) { var pricti_width=(dopstr.box_width-width_act)/2; if (pricti_width<1) pricti_width=1; else pricti_width=parseInt(pricti_width); if (pricti_width>max) pricti_width=max; width_act=width_act+pricti_width; dopstr.content_form.style.width=width_act+'px'; bMove=true; } if (dopstr.box_heigh>height_act) { var pricti_height=(dopstr.box_heigh-height_act)/2; if (pricti_height<1) pricti_height=1; else pricti_height=parseInt(pricti_height); if (pricti_height>max) pricti_height=max; height_act=height_act+pricti_height; dopstr.content_form.style.height=height_act+'px'; bMove=true; } if (bMove) setTimeout("dopstr.form_move();",30); else dopstr.movemax=0; }, form_hide: function () { var bMax=false; if (dopstr.content_form.style.width=='100%') bMax=true; var width_act=parseInt(dopstr.content_form.style.width); var height_act=parseInt(dopstr.content_form.style.height); var bMove=false; if (!bMax && width_act>0) { var odecti_width=width_act/2; if (odecti_width<1) pricti_width=1; else odecti_width=parseInt(odecti_width); width_act=width_act-odecti_width; dopstr.content_form.style.width=width_act+'px'; bMove=true; } if (height_act>0) { var odecti_height=height_act/2; if (odecti_height<1) odecti_height=1; else odecti_height=parseInt(odecti_height); height_act=height_act-odecti_height; dopstr.content_form.style.height=height_act+'px'; bMove=true; } if (bMove) setTimeout("dopstr.form_move();",30); else { dopstr.movemax=0; cls.add(dopstr.content_form,'hidden'); } }, generate_form: function () { var content='Zavřít

Odeslat stránku e-mailem

'; content+='

'; content+='

'; content+='


'; content+='

'; content+='
'; dopstr.content_form.innerHTML=content; var oEl=document.getElementById('dopstr_prijemce'); dopstr.check_form(oEl); oEl=document.getElementById('dopstr_odesilatel'); dopstr.check_form(oEl); }, check_form: function (oEl) { var reg=new RegExp("^([\\w\\!\\#\\$\\%\\&\\*\\+\\-\\/\\=\\?\\^\\{\\}\\|\\~]+)((\\.){1}[\\w\\!\\#\\$\\%\\&\\*\\+\\-\\/\\=\\?\\^\\{\\}\\|\\~]+)*@[\\w\\!\\#\\$\\%\\&\\*\\+\\-\\/\\=\\?\\^\\{\\}\\|\\~]+((\\.){1}[\\w\\!\\#\\$\\%\\&\\*\\+\\-\\/\\=\\?\\^\\{\\}\\|\\~]+)*\\.[a-zA-Z]{2,4}$") if (oEl==null) { var error=''; oEl=document.getElementById('dopstr_prijemce'); var fieldOK = (oEl.value.search(reg) < 0) ? false : true; if (!fieldOK) error+='\n- Adresa příjemce'; oEl=document.getElementById('dopstr_odesilatel'); var fieldOK = (oEl.value.search(reg) < 0) ? false : true; if (!fieldOK) error+='\n- Adresa odesílatele'; return error; } else { var fieldOK = (oEl.value.search(reg) < 0) ? false : true; if (fieldOK) { cls.remove(oEl,'invalid') cls.add(oEl,'valid'); } else { cls.remove(oEl,'valid') cls.add(oEl,'invalid'); } } }, send:function() { var oForm=document.getElementById('form_dopstr'); var chyba=dopstr.check_form(null); if (chyba.length==0) { var vysledek=confirm('Opravdu chcete poslat stránku e-mailem?'); if (vysledek) { var oEl=document.getElementById('dopstr_ajax'); cls.remove(oEl,'hidden'); var x_prijemce=document.getElementById('dopstr_prijemce').value; var x_vzkaz=document.getElementById('dopstr_vzkaz').value; var x_odesilatel=document.getElementById('dopstr_odesilatel').value; jQuery.post("core/menu/dopstr.php", { lang: dopstr.lang, active: dopstr.active,dopstr_gcm: 'jedem99', prijemce: x_prijemce, vzkaz: x_vzkaz, odesilatel: x_odesilatel }, function(data){ var oEl=document.getElementById('dopstr_ajax'); cls.add(oEl,'hidden'); if (data.indexOf('error')>=0) { alert('Stránka e-mailem se nepovedlo odeslat. Prosím, zkuste to později.'); } else { alert('Stránka e-mailem úspěšně odeslána.'); dopstr.showhide(); } }); } } else { alert("Formulář není vyplněn správně.\nProsím opravte tato políčka: "+chyba); } } }